-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 797 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
25
26
27
28
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='printdirtree',
version='0.1.5',
packages=find_packages(),
url="https://github.com/timf34/PrintDirTree",
entry_points={
'console_scripts': [
'printdirtree=printdirtree.__main__:main',
],
},
author='Tim Farrelly',
author_email='[email protected]',
description='A CLI utility to print the directory tree structure with customizable exclusions.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'pyperclip',
],
python_requires='>=3.6',
)