-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
36 lines (33 loc) · 946 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
32
33
34
35
36
from setuptools import setup
import os
with open(os.path.join(os.getcwd(), 'VERSION')) as version_file:
version = version_file.read().strip()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
author="Kit Plummer",
author_email="[email protected]",
name="clikan",
url="https://github.com/kitplummer/clikan",
version=version,
description="Simple CLI-based Kanban board",
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=['clikan'],
install_requires=[
'Click',
'click-default-group',
'pyyaml',
'rich'
],
entry_points='''
[console_scripts]
clikan=clikan:clikan
''',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Environment :: Console"
]
)