-
Notifications
You must be signed in to change notification settings - Fork 76
/
setup.py
41 lines (37 loc) · 1.16 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def readme():
with open("README.rst") as desc:
return desc.read()
setup(
name="amcrest",
version="1.9.8",
description="Python wrapper implementation for Amcrest cameras.",
long_description=readme(),
author="Douglas Schilling Landgraf, Marcelo Moreira de Mello",
author_email="[email protected], [email protected]",
url="http://github.com/tchellomello/python-amcrest",
license="GPLv2",
install_requires=[
"argcomplete",
"httpx",
"requests",
"typing_extensions",
"urllib3",
],
package_dir={"": "src"},
packages=find_packages("src"),
include_package_data=True,
package_data={"amcrest": ["py.typed"]},
test_suite="tests",
scripts=["cli/amcrest-cli", "tui/amcrest-tui"],
zip_safe=True,
keywords="amcrest camera python",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)