-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (28 loc) · 933 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
31
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='cdir',
version='1.3',
author="Antti Eskelinen",
author_email='antti.eskelinen3@gmail.com',
description='A faster way to navigate folders and browse files in Windows and Linux shells.',
long_description = long_description,
long_description_content_type="text/markdown",
url="https://github.com/EskelinenAntti/cdir",
scripts=['bin/cdir.ps1','bin/cdir.cmd','bin/cdir.sh'],
packages=['cdir_cli', 'cdir_cli/data', 'cdir_cli/user_interface'],
entry_points={
"console_scripts": [
"cdir_cli = cdir_cli.__main__:main",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"windows_curses >= 2.1.0;platform_system=='Windows'"
]
)