-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (49 loc) · 1.2 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
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.md")).read()
setup(
name="shodo",
version="1.1.0",
packages=find_packages(exclude=["tests"]),
url="https://github.com/zenproducts/shodo-python",
license="MIT",
author="ZenProducts Inc.",
description="Shodo Python CLI",
long_description=README,
long_description_content_type="text/markdown",
install_requires=[
"Click",
"requests",
],
extras_require={
"async": [
"aiohttp",
],
"dev": [
"aioresponses",
"pytest",
"pytest-asyncio",
"pytest-mock",
"pytest-responses",
"mypy",
"types-requests",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
],
entry_points={
"console_scripts": [
"shodo = shodo.main:cli",
],
},
package_data={
"shodo": [
"py.typed",
],
},
python_requires=">=3.8",
)