-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.11 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
from setuptools import setup
setup(
name='cli2',
versioning='dev',
setup_requires='setupmeta',
install_requires=[
'docstring_parser',
'pyyaml',
'pygments',
'structlog',
],
extras_require=dict(
client=[
'httpx',
'truststore',
],
test=[
'freezegun',
'pytest',
'pytest-cov',
'pytest-mock',
'pytest-asyncio',
'pytest-httpx',
],
),
author='James Pic',
author_email='[email protected]',
url='https://yourlabs.io/oss/cli2',
include_package_data=True,
license='MIT',
keywords='cli',
python_requires='>=3.6',
entry_points={
'console_scripts': [
'cli2 = cli2.cli:main.entry_point',
'cli2-example = cli2.example_obj:cli.entry_point',
'cli2-example-nesting = cli2.example_nesting:cli.entry_point',
'cli2-example-client = cli2.example_client:cli.entry_point',
'cli2-example-client-complex = cli2.example_client_complex:cli.entry_point',
],
},
)