-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.34 KB
/
setup.py
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
39
"""Setup Package Configuration
"""
from setuptools import setup, find_packages
setup(
name="treescriptify",
version="0.2",
description="Create TreeScript from an existing filesystem tree.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="DK96-OS",
url="https://github.com/DK96-OS/treescriptify",
project_urls={
"Issues": "https://github.com/DK96-OS/treescriptify/issues",
"Source Code": "https://github.com/DK96-OS/treescriptify"
},
license="GPLv2",
packages=find_packages(exclude=['test']),
entry_points={
'console_scripts': [
'treescriptify=treescriptify.__main__:main',
'treescriptify_this=treescriptify.__main__:main',
'treescriptify-this=treescriptify.__main__:main',
],
},
classifiers=[
'Natural Language :: English',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)