-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
83 lines (68 loc) · 2.28 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!usr/bin/python
# -*- coding: utf-8 -*-
"""
Package installation setup
"""
import os
import subprocess
from setuptools import find_packages, setup
version = '0.1.0'
sha = 'Unknown'
package_name = 'torch_index'
cwd = os.path.dirname(os.path.abspath(__file__))
try:
sha = subprocess.check_output(['git', 'rev-parse', 'HEAD'], cwd=cwd).decode('ascii').strip()
except Exception:
pass
if os.getenv('BUILD_VERSION'):
version = os.getenv('BUILD_VERSION')
elif sha != 'Unknown':
version += '+' + sha[:7]
print("Building wheel {}-{}".format(package_name, version))
def write_version_file():
version_path = os.path.join(cwd, 'torch_index', 'version.py')
with open(version_path, 'w') as f:
f.write("__version__ = '{}'\n".format(version))
write_version_file()
with open('README.md') as f:
readme = f.read()
requirements = [
'torch>=1.0.1'
]
setup(
# Metadata
name=package_name,
version=version,
author='vacancy',
description='Useful information about your Pytorch module',
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/m1pro/AdvancedIndexing-PyTorch',
download_url='https://github.com/m1pro/AdvancedIndexing-PyTorch/tags',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['pytorch', 'deep learning', 'summary', 'memory', 'ram'],
# Package info
packages=find_packages(exclude=('test',)),
zip_safe=True,
python_requires='>=3.6.0',
include_package_data=True,
install_requires=requirements,
package_data={'': ['LICENSE']}
)