File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments