-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 873 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
29
30
# Copyright (c) 2018, Toby Slight. All rights reserved.
# ISC License (ISCL) - see LICENSE file for details.
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="treepick",
version="0.1.4",
author="Toby Slight",
author_email="[email protected]",
description="Curses Tree Style Path Picker",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tslight/treepick",
install_requires=['pdu'],
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
),
entry_points={
'console_scripts': [
'treepick = treepick.__main__:main',
],
}
)