-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 1.19 KB
/
setup.py
File metadata and controls
37 lines (32 loc) · 1.19 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
32
33
34
35
36
37
import setuptools
with open("requirements.txt", "r") as f:
reqs = f.read().split("\n")
with open("requirements_test.txt", "r") as f:
test_reqs = f.read().split("\n")
with open('README.md') as f:
README = f.read()
setuptools.setup(
name='dcr_consistency',
version='0.0.1',
description='A package to detect and mitigate inconsistency',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/test',
author='Wendi Cui, Jiaxin Zhang',
author_email='wendi_cui@intuit.com',
license='Apache License 2.0',
packages=setuptools.find_packages(),
install_requires=reqs,
python_requires=">=3.9",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)