-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
97 lines (84 loc) · 3.06 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
91
92
93
94
95
96
97
"""TensorFlow RWKV."""
import os
from pathlib import Path
import sys
from datetime import datetime
from setuptools import find_packages
from setuptools import setup
from setuptools.dist import Distribution
from setuptools import Extension
DOCLINES = __doc__.split("\n")
def get_last_commit_time() -> str:
string_time = os.getenv("NIGHTLY_TIME").replace('"', "")
return datetime.strptime(string_time, "%Y-%m-%dT%H:%M:%SZ").strftime("%Y%m%d%H%M%S")
def get_project_name_version():
# Version
version = {}
base_dir = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(base_dir, "tensorflow_rwkv", "version.py")) as fp:
exec(fp.read(), version)
project_name = "tensorflow-rwkv"
return project_name, version
def get_ext_modules():
ext_modules = []
if "--platlib-patch" in sys.argv:
if sys.platform.startswith("linux"):
# Manylinux2010 requires a patch for platlib
ext_modules = [Extension("_foo", ["stub.cc"])]
sys.argv.remove("--platlib-patch")
return ext_modules
class BinaryDistribution(Distribution):
"""This class is needed in order to create OS specific wheels."""
def has_ext_modules(self):
return True
project_name, version = get_project_name_version()
inclusive_min_tf_version = version["INCLUSIVE_MIN_TF_VERSION"]
exclusive_max_tf_version = version["EXCLUSIVE_MAX_TF_VERSION"]
setup(
name=project_name,
version=version["__version__"],
description=DOCLINES[0],
long_description="\n".join(DOCLINES[2:]),
author="Philipp Rouast",
author_email="[email protected]",
packages=find_packages(),
ext_modules=get_ext_modules(),
install_requires=Path("requirements.txt").read_text().splitlines(),
extras_require={
"tensorflow": [
"tensorflow>={},<{}".format(
inclusive_min_tf_version, exclusive_max_tf_version
)
],
"tensorflow-gpu": [
"tensorflow-gpu>={},<{}".format(
inclusive_min_tf_version, exclusive_max_tf_version
)
],
"tensorflow-cpu": [
"tensorflow-cpu>={},<{}".format(
inclusive_min_tf_version, exclusive_max_tf_version
)
],
},
include_package_data=True,
zip_safe=False,
distclass=BinaryDistribution,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
],
license="Apache 2.0",
keywords="tensorflow rwkv machine learning",
)