This repository has been archived by the owner on Apr 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 212
/
Copy pathsetup.py
90 lines (81 loc) · 3.44 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
84
85
86
87
88
89
90
# Copyright (c) 2017-present, Facebook, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##############################################################################
from setuptools import setup, Extension, distutils, Command, find_packages
import setuptools.command.install
import setuptools.command.develop
import setuptools.command.build_py
import distutils.command.build
from shutil import copyfile
import subprocess, os
import glob
TOP_DIR = os.path.realpath(os.path.dirname(__file__))
print('TOP_DIR: ', TOP_DIR)
###############################################################################
# Version and build number
###############################################################################
git_version = subprocess.check_output(
['git', 'rev-parse', 'HEAD'], cwd=TOP_DIR
).decode('ascii').strip()
# TODO (prigoyal): automatically sync this with conda package
tc_version = '0.1.1'
tc_build_number = 2
# versioning should comply with
# https://www.python.org/dev/peps/pep-0440/#public-version-identifiers
# when conda packaging, we get these values from environment variables
if os.getenv('TC_BUILD_VERSION') and os.getenv('TC_BUILD_NUMBER'):
assert os.getenv('TC_BUILD_NUMBER') is not None, "Please specify valid build number"
tc_build_number = int(os.getenv('TC_BUILD_NUMBER'))
tc_version = str(os.getenv('TC_BUILD_VERSION'))
if tc_build_number > 1:
tc_version += '.post' + str(tc_build_number)
print('git_version: {} tc_version: {} tc_build_number: {}'.format(
git_version, tc_version, tc_build_number
))
################################################################################
# Custom override commands
################################################################################
class install(setuptools.command.install.install):
def run(self):
setuptools.command.install.install.run(self)
################################################################################
# Extensions
################################################################################
# Extensions built with cmake
ext_modules = []
################################################################################
# Command line options
################################################################################
cmdclass = {
'install': install,
}
###############################################################################
# Main
###############################################################################
setup(
name="tensor_comprehensions",
version=tc_version,
ext_modules=ext_modules,
cmdclass=cmdclass,
packages=find_packages(),
package_data={'tensor_comprehensions': [
'tclib.so',
]},
install_requires=['pyyaml', 'numpy'],
author='Tensor Comprehensions Team',
author_email='tensorcomp@fb.com',
url='https://github.com/facebookresearch/TensorComprehensions',
license="Apache 2.0",
description=("Framework-Agnostic Abstractions for High-Performance Machine Learning"),
)