-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (50 loc) · 1.81 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
from pathlib import Path
this_dir_path = Path(__file__).parent
readme_path = this_dir_path / 'README.rst'
with open(str(readme_path)) as fh:
long_description = fh.read()
setup(
name = 'kickoff',
version = '0.5.11',
description = 'Turns your Python script or module into an application with decent CLI.',
author = 'Grzegorz Krason',
author_email = '[email protected]',
url = 'https://github.com/gergelyk/python-kickoff',
license = 'MIT',
packages = find_packages(),
keywords = 'cli cui argparse optparse docopt click fire invoke runfile'.split(),
long_description = long_description,
long_description_content_type = 'text/x-rst',
python_requires = '~=3.6',
entry_points = {
'console_scripts': ['kickoff = kickoff.__main__:main'],
},
install_requires = [
'click',
'click-didyoumean',
'click-repl',
'python-box',
],
classifiers = [
'Environment :: Console',
'Environment :: MacOS X',
'Environment :: Other Environment',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'License :: Freeware',
'License :: OSI Approved :: MIT License',
'Operating System :: iOS',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)