-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 900 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='custom-tree',
version='1.7',
packages=find_packages(),
description="Creating a custom directory tree is an efficient method for visually organizing your project's directory structure, complete with detailed information. It provides a clear model of your project layout for easy reference and management.",
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='dragon-devs',
author_email='[email protected]',
url='https://github.com/dragon-devs/custom-tree',
license='MIT',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
entry_points={
'console_scripts': [
'custom-tree = custom_tree.main:main'
]
}
)