Skip to content

Commit 3ec4f22

Browse files
committed
Installation file
1 parent dbdadf7 commit 3ec4f22

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
from setuptools import setup, find_packages
2+
3+
4+
PACKAGE_NAME = 'pyannotating'
5+
6+
VERSION = '1.0.0'
7+
8+
with open('README.md') as readme_file:
9+
LONG_DESCRIPTION = readme_file.read()
10+
11+
setup(
12+
name=PACKAGE_NAME,
13+
description="Library for convenient generation of annotations for your code",
14+
long_description=LONG_DESCRIPTION,
15+
long_description_content_type="text/markdown",
16+
license_files = ('LICENSE',),
17+
license="GNU General Public License v3.0",
18+
version=VERSION,
19+
url="https://github.com/TheArtur128/Pyannotating",
20+
download_url=f"https://github.com/TheArtur128/Pyannotating/archive/refs/tags/v{VERSION}.zip",
21+
author="Arthur",
22+
author_email="s9339307190@gmail.com",
23+
python_requires='>=3.11',
24+
classifiers=["Programming Language :: Python :: 3.11"],
25+
keywords=['library', 'annotations' 'generation'],
26+
py_modules=[PACKAGE_NAME]
27+
)

0 commit comments

Comments
 (0)