-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (33 loc) · 1.14 KB
/
setup.py
File metadata and controls
38 lines (33 loc) · 1.14 KB
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
import os
# read the contents of your README file
from pathlib import Path
import pkg_resources
from setuptools import find_packages, setup
long_description = Path(__file__).with_name("README.md").read_text()
setup(
name="onnx_transformers",
packages=find_packages(exclude=("test")),
version="1.2.1",
license="Apache Software License",
description="tbd",
long_description=long_description,
long_description_content_type="text/markdown",
author="c7nw3r",
url="https://github.com/leftshiftone/onnx_transformers",
download_url="https://github.com/leftshiftone/onnx_transformers/archive/refs/tags/v1.2.0.tar.gz",
keywords=["onnx", "transformers"],
setup_requires=["setuptools_scm"],
include_package_data=True,
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
)