-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.27 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
from setuptools import setup, find_packages
import os
version = "0.13.3"
# Function to write the version to a _version.py file
def write_version_file(version):
version_path = os.path.join(os.path.dirname(
__file__), 'vgslify', '_version.py')
with open(version_path, 'w') as f:
f.write(f"__version__ = '{version}'\n")
write_version_file(version)
setup(
name="vgslify",
version=version,
author="Tim Koornstra",
author_email="[email protected]",
description="VGSLify is a Python toolkit designed for rapid prototyping "
"and seamless conversion between TensorFlow models and the Variable-size "
"Graph Specification Language (VGSL). Drawing inspiration from "
"Tesseract's VGSL specs, VGSLify introduces enhancements and provides a "
"streamlined approach to define, train, and interpret deep learning "
"models using VGSL.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/TimKoornstra/",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
],
python_requires=">=3.9",
)