-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
46 lines (41 loc) · 1.5 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
from os.path import dirname, join
from setuptools import setup, find_packages
import events_protocol
with open(join(dirname(__file__), "README.md")) as _file:
long_description = _file.read()
setup(
name="events-protocol",
version=events_protocol.__version__,
author="Guiabolso",
description="Library to be a Client and Server using event protocol",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/GuiaBolso/events-protocol-python",
license="Apache-2.0",
packages=find_packages(),
install_requires=[
"certifi>=2019.11.28",
"chardet>=3.0.4",
"idna>=2.8",
"pydantic>=1.4",
"requests>=2.22.0",
"urllib3>=1.25.8",
],
extras_require={"doc": ["Sphinx==2.4.1", "sphinx-autoapi==1.2.1",],},
project_urls={
"Documentation": "https://events-protocol.readthedocs.io/en/stable/",
"Source Code": "https://github.com/GuiaBolso/events-protocol-python",
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.7",
)