-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
62 lines (53 loc) · 1.96 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import os
import sys
from distutils.core import setup
from setuptools.command.install import install
from setuptools import find_packages
# circleci.py version
VERSION = '1.5.2'
with open('README.rst', 'r') as fh:
long_description = fh.read().split('Results\n-------')[0]
with open('requirements.txt', 'r') as fh:
requirements = [e.strip() for e in fh.readlines() if e.strip() != '']
class VerifyVersionCommand(install):
"""Custom command to verify that the git tag matches our version"""
description = 'verify that the git tag matches our version'
def run(self):
tag = os.getenv('CIRCLE_TAG')
if tag != VERSION:
info = "Git tag: {0} does not match the version of this app: {1}".format(
tag, VERSION
)
sys.exit(info)
setup(
name='memcnn',
version=VERSION,
author='S.C. van de Leemput',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
scripts=[],
url='http://pypi.python.org/pypi/memcnn/',
license='LICENSE.txt',
description='A PyTorch framework for developing memory efficient deep invertible networks.',
long_description=long_description,
long_description_content_type='text/x-rst',
install_requires=requirements,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
"Operating System :: OS Independent"
],
keywords='memcnn invertible PyTorch',
cmdclass={
'verify': VerifyVersionCommand,
}
)