-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (44 loc) · 1.38 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
from setuptools import setup
import pathlib
pkg_vars = {}
here = pathlib.Path(__file__).parent.resolve()
with open(here / 'cli/_version.py', encoding='utf-8') as f:
exec(f.read(), pkg_vars)
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name="didimo-cli",
version=pkg_vars["__version__"],
description="Command-line interface to interact with Didimo API",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/didimoinc/cli",
project_urls={
'Bug Reports': 'https://github.com/didimoinc/cli/issues',
'Source': 'https://github.com/didimoinc/cli',
},
author="Didimo, Inc.",
author_email="[email protected]",
keywords='cli, didimo, api',
license='Apache 2.0',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: Games/Entertainment',
'Topic :: Multimedia :: Graphics',
'Programming Language :: Python :: 3'
],
packages=["cli"],
include_package_data=True,
install_requires=[
"click",
"requests",
"psutil"
],
entry_points="""
[console_scripts]
didimo=cli.cli:cli
"""
)