-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 892 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 892 Bytes
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
from setuptools import setup
PACKAGE_NAME = "pyannotating"
VERSION = "1.3.0"
with open("README.md") as readme_file:
LONG_DESCRIPTION = readme_file.read()
setup(
name=PACKAGE_NAME,
description="Library of annotations for humans",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license_files = ("LICENSE",),
license="GNU General Public License v3.0",
version=VERSION,
url="https://github.com/TheArtur128/Pyannotating",
download_url=f"https://github.com/TheArtur128/Pyannotating/archive/refs/tags/v{VERSION}.zip",
author="Arthur",
author_email="s9339307190@gmail.com",
python_requires=">=3.11",
classifiers=["Programming Language :: Python :: 3.11"],
keywords=["library", "annotations", "generation", "templating", "annotations", "informing", "code-readability"],
py_modules=[PACKAGE_NAME]
)