-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 1.31 KB
/
setup.py
File metadata and controls
43 lines (41 loc) · 1.31 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="corai",
version="1.401",
author="Niels D. Kotlarek, Bianca T. Catea",
author_email="niels.carioukotlarek@gmail.com",
description="A collection of python libraries.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Code-Cornelius/python_libraries",
project_urls={
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'setuptools>=56.0.0',
'matplotlib>=3.3.1',
'numpy>=1.21.0',
'pandas>=1.2.3',
'seaborn>=0.11.1',
'torch>=1.8.1+cu102',
'scikit-learn>=0.23.2',
'tqdm>=4.61.1',
'Keras>=2.4.3',
'Pillow>=8.2.0',
'scipy>=1.7.0'
],
package_dir={"corai_error": "corai_error",
"corai_estimator": "corai_estimator",
"corai_metaclass": "corai_metaclass",
"corai": "corai",
"corai_plot": "corai_plot",
"corai_util": "corai_util"},
packages=setuptools.find_packages(),
python_requires=">=3.7.12",
)