-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
43 lines (36 loc) · 988 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
39
40
41
42
43
from setuptools import setup, find_packages
# with open("README.md", "r") as fh:
# long_description = fh.read()
long_description = f"""
# yann (Yet Another Neural Network Library)
Yann is an extended version of torch.nn, adding a ton of sugar to make training models as fast and easy as possible.
"""
setup(
name='yann',
version='0.0.40',
description='yet another neural network library',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/michalwols/yann',
author='Michal Wolski',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': ['yann=yann.cli:main'],
},
extras_require={
'cli': ['click>=6.7'],
'pretrainedmodels': ['pretrainedmodels']
},
install_requires=[
'numpy',
'scipy',
'scikit-learn',
'torch>=1.0.0',
'matplotlib',
'torchvision',
'tqdm'
],
python_requires='>=3.7',
zip_safe=False)