-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
49 lines (45 loc) · 1.51 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
#!/usr/bin/env python
from setuptools import setup, find_packages
description = long_description = "Python client for Socialhome."
setup(
name="shcli",
version="0.2.0",
description=description,
long_description=long_description,
author="Jason Robinson",
author_email="[email protected]",
maintainer="Jason Robinson",
maintainer_email="[email protected]",
url="https://git.feneas.org/socialhome/shcli",
download_url="https://git.feneas.org/socialhome/shcli/-/releases",
packages=find_packages(exclude=["tests"]),
license="MIT",
install_requires=[
"requests>=2.8.0",
"click>=6",
],
python_requires=">=3.6",
include_package_data=True,
entry_points={
"console_scripts": [
"shcli = shcli.cli:shcli",
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
keywords="socialhome federation",
)