-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
33 lines (30 loc) · 1.12 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
import setuptools
with open('README.md') as f:
README = f.read()
setuptools.setup(
author="Lucas Nestler",
author_email="[email protected]",
name='revlib',
license='BSD',
description='Simple and efficient RevNet-Library for PyTorch with XLA and DeepSpeed support and parameter offload',
version='1.7.2',
long_description=README,
url='https://github.com/clashluke/revlib',
packages=setuptools.find_packages(),
python_requires=">=3.7",
long_description_content_type="text/markdown",
install_requires=[],
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)