-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
54 lines (49 loc) · 1.32 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
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
import fasterentrypoint # NOQA: For side effects only
import versioneer
versions = versioneer.get_versions()
version = versions['version']
if version == u'0+unknown':
if versions['full-revisionid'] is None:
version = '0.0.0-dev'
else:
version = u'sha:{}'.format(versions['full-revisionid'])
cmdclass = versioneer.get_cmdclass()
setup(
name='clk',
cmdclass=cmdclass,
version=version,
author='Samuel Loury',
author_email='[email protected]',
description='A framework to help you have an awesome CLI',
packages=find_packages(),
long_description='See https://clk-project.org/ or https://github.com/clk-project/clk',
zip_safe=False,
python_requires='>=3.8',
include_package_data=True,
install_requires=[
'click>=8',
'click-log',
'click-didyoumean',
'glob2',
'colorama',
'python-dateutil',
'tabulate==0.8.10',
'networkx',
'parsedatetime',
'pydotplus',
'pluginbase',
'appdirs',
'ipdb',
'humanize==4',
'Pygments',
'cached-property',
'requests',
'tqdm',
],
entry_points={'console_scripts': [
'clk=clk.main:main',
]},
)