-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (39 loc) · 1.48 KB
/
setup.py
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='dammy',
version='1.1.0',
description='Generate fake data for any purpose',
long_description_content_type="text/markdown",
long_description=README,
license='GPL-3.0',
packages=['dammy'],
package_dir={'dammy': 'dammy'},
package_data={'dammy': ['data/*.json']},
author='Ibon',
author_email='[email protected]',
keywords=['dummy-data', 'fake', 'mock', 'database', 'sql', 'dummy', 'test', 'data', 'population'],
url='https://github.com/ibonn/dammy',
download_url='https://pypi.org/project/dammy/',
project_urls={
"Documentation": "https://readthedocs.org/projects/dammy/",
"Source Code": "https://github.com/ibonn/dammy"
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Database',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Testing :: Mocking',
'Topic :: Utilities'
],
include_package_data=True
)
install_requires = []
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)