forked from simberaj/pysynth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.14 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
import setuptools
with open('README.md') as infile:
long_description = infile.read()
with open('requirements.txt') as infile:
required = [line.strip() for line in infile]
with open('VERSION') as infile:
version = infile.read().strip()
setuptools.setup(
name='pysynth',
version=version,
description='Dataset synthesis for Python',
long_description=long_description,
long_description_content_type='text/markdown; charset=UTF-8',
author='Jan Šimbera',
author_email='[email protected]',
python_requires='>=3.7.0',
url='https://github.com/simberaj/pysynth',
packages=setuptools.find_packages(exclude=('tests', )),
install_requires=required,
extras_require={},
include_package_data=True,
license='MIT',
keywords='synthesis ipf data python',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
zip_safe=True
)