forked from Data-Centric-AI-Community/fg-data-synthetic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 1.12 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (27 loc) · 1.12 KB
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
from setuptools import setup, find_namespace_packages
import os
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 = os.getenv('VERSION')
setup(name='ydata-synthetic',
version=VERSION,
description='Synthetic data generation methods with different synthetization methods.',
author='YData',
author_email='community@ydata.ai',
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Artificial Intelligence :: Python Modules :: ',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
],
keywords='data science ydata',
url='https://github.com/ydataai/ydata-synthetic',
python_requires=">=3.6",
packages=find_namespace_packages('src'),
package_dir={'':'src'},
include_package_data=True,
install_requires=requirements,
options={"bdist_wheel": {"universal": True}})