-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
42 lines (35 loc) · 1.49 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
from setuptools import setup, find_packages
PACKAGE_NAME = 'pyCeterisParibus'
REQUIREMENTS_PATH = 'requirements.txt'
README_PATH = 'README.md'
VERSION = '0.5.2'
def get_requirements():
with open(REQUIREMENTS_PATH, 'r') as f:
requirements = f.read().splitlines()
return requirements
def get_readme():
with open(README_PATH, 'r') as f:
return f.read()
setup(name=PACKAGE_NAME,
version=VERSION,
description='Ceteris Paribus python package',
long_description=get_readme(),
long_description_content_type='text/markdown',
url='https://github.com/ModelOriented/pyCeterisParibus',
author='Michał Kuźba',
author_email='[email protected]',
packages=find_packages(exclude=['examples', 'tests']),
package_data={'ceteris_paribus': ['plots/ceterisParibusD3.js', 'plots/plot_template.html', 'datasets/*.csv']},
install_requires=get_requirements(),
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization'
])