-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 1.3 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
from setuptools import setup, find_packages
# Be sure to update the version number in both "setup.py" and "meta.yaml" files, and the README and CITATION versions.
setup(
name='pyorganoid',
version='0.1.5',
packages=find_packages(),
author='Daniel Szelogowski',
description='A Python package for the simulation of organoids for the purpose of studying '
'Organoid Intelligence (OI) and Organoid Learning (OL).',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://danielathome19.github.io/pyorganoid',
project_urls={
'Documentation': 'https://danielathome19.github.io/pyorganoid',
'Source': 'https://github.com/danielathome19/pyorganoid',
'Tracker': 'https://github.com/danielathome19/pyorganoid/issues',
},
install_requires=[
'numpy',
'matplotlib',
'graphviz',
],
extras_require={
"tensorflow": ["tensorflow<=2.15"],
"torch": ["torch"],
"sklearn": ["scikit-learn", "joblib"],
"onnx": ["onnxruntime", "onnxmltools"],
"all": ["tensorflow<=2.15", "torch", "scikit-learn", "joblib", "onnxruntime", "onnxmltools"]
},
entry_points={
'console_scripts': [
'pyorganoid=pyorganoid:main',
],
},
)