forked from andreArtelt/ceml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_pip.py
38 lines (32 loc) · 1.2 KB
/
setup_pip.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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
with open(os.path.join(os.path.dirname(__file__), 'ceml/VERSION')) as f:
version = f.read().strip()
def readme():
with open('README.rst') as f:
return f.read()
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
setup(name='ceml',
version=version,
description='Counterfactuals for explaining machine learning models - A Python toolbox',
long_description=readme(),
keywords='machine learning counterfactual',
url='https://github.com/andreArtelt/ceml',
author='André Artelt',
author_email='[email protected]',
license='MIT',
python_requires='>=3.8',
install_requires=install_requires,
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
zip_safe=False)