|
| 1 | +"""Setup Package Configuration |
| 2 | +""" |
| 3 | +from setuptools import setup, find_packages |
| 4 | + |
| 5 | + |
| 6 | +setup( |
| 7 | + name="treescriptify-this", |
| 8 | + version="0.1", |
| 9 | + description="Create TreeScript from an existing filesystem tree.", |
| 10 | + long_description=open('README.md').read(), |
| 11 | + long_description_content_type='text/markdown', |
| 12 | + author="DK96-OS", |
| 13 | + url="https://github.com/DK96-OS/treescriptify-this", |
| 14 | + project_urls={ |
| 15 | + "Issues": "https://github.com/DK96-OS/treescriptify-this/issues", |
| 16 | + "Source Code": "https://github.com/DK96-OS/treescriptify-this" |
| 17 | + }, |
| 18 | + license="GPLv2", |
| 19 | + packages=find_packages(exclude=['test']), |
| 20 | + entry_points={ |
| 21 | + 'console_scripts': [ |
| 22 | + 'treescriptify=treescriptify_this.__main__:main', |
| 23 | + 'treescriptify_this=treescriptify_this.__main__:main', |
| 24 | + 'treescriptify-this=treescriptify_this.__main__:main', |
| 25 | + ], |
| 26 | + }, |
| 27 | + classifiers=[ |
| 28 | + 'Natural Language :: English', |
| 29 | + 'Operating System :: OS Independent', |
| 30 | + 'Intended Audience :: Developers', |
| 31 | + 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', |
| 32 | + 'Programming Language :: Python :: 3', |
| 33 | + 'Programming Language :: Python :: 3.8', |
| 34 | + 'Programming Language :: Python :: 3.9', |
| 35 | + 'Programming Language :: Python :: 3.10', |
| 36 | + 'Programming Language :: Python :: 3.11', |
| 37 | + 'Programming Language :: Python :: 3.12', |
| 38 | + ], |
| 39 | +) |
0 commit comments