-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
106 lines (102 loc) · 3.07 KB
/
setup.py
File metadata and controls
106 lines (102 loc) · 3.07 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
"""
Setup script for neurolite library.
"""
from setuptools import setup, find_packages
import os
# Read the contents of README file
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Read version from _version.py
version_file = os.path.join(this_directory, 'neurolite', '_version.py')
version_dict = {}
with open(version_file) as f:
exec(f.read(), version_dict)
setup(
name="neurolite",
version=version_dict['__version__'],
author="NeuroLite Team",
author_email="team@neurolite.ai",
description="AI/ML/DL/NLP productivity library for minimal-code machine learning workflows",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dot-css/neurolite",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.8",
install_requires=[
"numpy>=1.24.0",
"pandas>=2.0.0",
"scikit-learn>=1.3.0",
"torch>=2.0.0",
"torchvision>=0.15.0",
"transformers>=4.30.0",
"optuna>=3.3.0",
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"plotly>=5.15.0",
"flask>=2.3.0",
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"pydantic>=2.0.0",
"click>=8.1.0",
"tqdm>=4.65.0",
"pillow>=10.0.0",
"opencv-python>=4.8.0",
"librosa>=0.10.0",
"onnx>=1.14.0",
"onnxruntime>=1.15.0",
],
extras_require={
"dev": [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-xdist>=3.3.0",
"black>=23.7.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
"pre-commit>=3.3.0",
"build>=0.10.0",
"twine>=4.0.2",
"ruff>=0.0.280",
],
"tensorflow": [
"tensorflow>=2.13.0",
],
"xgboost": [
"xgboost>=1.7.0",
],
"docs": [
"sphinx>=7.0.0",
"sphinx-rtd-theme>=1.3.0",
"myst-parser>=2.0.0",
],
"all": [
"tensorflow>=2.13.0",
"xgboost>=1.7.0",
"sphinx>=7.0.0",
"sphinx-rtd-theme>=1.3.0",
"myst-parser>=2.0.0",
],
},
entry_points={
"console_scripts": [
"neurolite=neurolite.cli.main:main",
],
},
include_package_data=True,
zip_safe=False,
)