-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (46 loc) · 1.57 KB
/
setup.py
File metadata and controls
48 lines (46 loc) · 1.57 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
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
setup(
name='fixout',
version='0.1.36a',
description='Algorithmic inspection for trustworthy ML models',
packages=find_packages(),
package_data={'': ['web/templates/*.html',
'web/templates/utils-web/*.html',
'web/static/*.css',
'web/static/*.png',
'web/static/*.svg',
'demos/*.py',
'demos/data/*.data']},
include_package_data=True,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/fixouttech/fixout",
author="FixOut",
license="BSD",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent"
],
python_requires=">=3.8",
install_requires=[
'Flask>=3.0.3',
'Jinja2>=3.1.4',
'numpy>=1.26.4',
'pandas>=2.2.2',
'plotly>=5.24.0',
'scikit-image>=0.24.0',
'scikit-learn>=1.5.2',
'scipy>=1.11.4',
'thrift>=0.20.0',
'tinycss2>=1.4.0',
'webcolors>=24.11.1'
],
)