forked from ydataai/ydata-synthetic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (44 loc) · 2.09 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
44
45
46
47
48
49
50
from fileinput import FileInput
from setuptools import setup, find_namespace_packages
from pathlib import Path
here = Path(__file__).parent.resolve()
requirements = (here / "requirements.txt").read_text(encoding="utf8")
long_description = (here / 'README.md').read_text(encoding='utf-8')
version = (here / 'VERSION').read_text().rstrip("\n")
with open('src/ydata_synthetic/version.py', 'w') as version_file:
version_file.write(f'__version__ = \'{version}\'')
setup(name='ydata-synthetic',
version=version,
description='Synthetic data generation methods with different synthetization methods.',
long_description=long_description,
long_description_content_type='text/markdown',
author='YData',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='data science ydata',
url='https://github.com/ydataai/ydata-synthetic',
license="https://github.com/ydataai/ydata-synthetic/blob/master/LICENSE",
python_requires=">=3.6, <3.9",
packages=find_namespace_packages('src'),
package_dir={'':'src'},
include_package_data=True,
options={"bdist_wheel": {"universal": True}},
install_requires=requirements)