forked from capancheta/datawig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 960 Bytes
/
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
import os
import setuptools
ROOT = os.path.dirname(__file__)
with open(os.path.join(ROOT,"requirements", "requirements.txt")) as f:
required = f.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="datawig",
version="0.2.0",
author="datawig-dev",
author_email="[email protected]",
maintainer_email='[email protected]',
description="Imputation for tables with missing values",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/awslabs/datawig",
packages=setuptools.find_packages(),
data_files=[('requirements', ['requirements/requirements.txt'])],
install_requires=required,
license='Apache License 2.0',
python_requires='>=3',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only'
],
)