-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 921 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='fakermaker',
version='0.3.0',
description='Creates pandas dataframes containing fake data using a IPython magic function with custom domain specific language',
long_description_content_type="text/markdown",
long_description=README,
license='MIT',
packages=find_packages(),
author='Nicholas Miller',
author_email='miller.nicholas.a@gmail.com',
keywords=['FakerMaker', 'faker', 'fake', 'data', 'generator', 'maker', 'creator', 'psuedo', 'random', 'test', 'sample'],
url='https://github.com/cassova/Faker-Maker',
download_url='https://github.com/cassova/Faker-Maker'
)
install_requires = [
'IPython',
'numpy',
'pandas',
'Faker'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)