-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
34 lines (31 loc) · 950 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
32
33
34
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='CCIT',
version='0.5',
description='Model Powered CI Test',
url='https://github.com/rajatsen91/CCIT.git',
author='Rajat Sen',
classifiers=[
'Development Status :: 5 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
author_email='[email protected]',
license='Apache License 2.0',
packages=['CCIT'],
install_requires=[
'markdown',
'xgboost==1.5.2',
'pandas',
'numpy==1.18.5',
'scikit-learn==0.23.1',
'scipy==1.4.1',
'matplotlib'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False)