-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
38 lines (35 loc) · 1015 Bytes
/
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
37
38
#!/usr/bin/env python
import pathlib
from setuptools import setup, find_packages
# The directory containing this file
ROOT = pathlib.Path(__file__).parent
# The text of the README file
README = (ROOT/"README.md").read_text()
setup(
name='biotorch',
version='0.0.16',
description='BioTorch is a PyTorch framework specializing in biologically plausible learning algorithms.',
long_description=README,
long_description_content_type="text/markdown",
include_package_data=True,
author='Albert Jimenez',
author_email='albertjimenez@aip.ai',
url='https://github.com/jsalbert/biotorch',
packages=find_packages(exclude=['tests', '.cache', '.venv', '.git', 'dist']),
install_requires=[
"jsonschema>=3.0",
"torch>=1.0",
"torchvision",
"numpy",
"matplotlib",
"pandas",
"ipykernel",
"jupyter",
"Pillow",
"pyyaml",
"scipy",
"tensorboard",
"torchattacks",
"tqdm"
]
)