-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
32 lines (29 loc) · 1.11 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
from setuptools import setup, find_packages
if __name__ == '__main__':
# Read in README.md for our long_description
with open('./README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='torchdeq',
version='0.1.0',
license='MIT',
author='Zhengyang Geng',
author_email='zhengyanggeng@gmail.com',
description='A PyTorch Lib for DEQs',
url='https://github.com/locuslab/torchdeq',
packages=find_packages(exclude=['deq-zoo', 'build', '*.egg-info']),
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
install_requires=[
'torch>=1.11.0',
'numpy>=1.21.5'
],
)