-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.32 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
import setuptools
with open("README.md") as f:
long_description = f.read()
with open("./src/vizneuron/__init__.py") as f:
for line in f.readlines():
if line.startswith("__version__"):
delim = '"' if '"' in line else "'"
version = line.split(delim)[1]
break
else:
print("Can't find version! Stop Here!")
exit(1)
setuptools.setup(
name="vizneuron",
version=version,
author="Alexander Jipa",
author_email="[email protected]",
description="AWS Neuron plugins for VizTracer",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/clumsy/vizneuron",
packages=setuptools.find_packages("src"),
package_dir={"":"src"},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
],
install_requires=[
"viztracer",
],
extras_require={
"lightning": ["pytorch-lightning"],
},
python_requires=">=3.8",
)