forked from GuiaBolso/events-protocol-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (43 loc) · 1.51 KB
/
setup.py
File metadata and controls
49 lines (43 loc) · 1.51 KB
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
from os.path import dirname, join
from setuptools import setup, find_packages
with open(join(dirname(__file__), "events_protocol/VERSION")) as _file:
version = _file.read().strip()
with open(join(dirname(__file__), "README.md")) as _file:
long_description = _file.read()
setup(
name="events-protocol",
version=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",
"dataclasses-json==0.3.7",
"idna==2.8",
"marshmallow==3.3.0",
"marshmallow-enum==1.5.1",
"mypy-extensions==0.4.3",
"requests==2.22.0",
"stringcase==1.2.0",
"typing-extensions==3.7.4.1",
"typing-inspect==0.5.0",
"urllib3==1.25.8",
],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache-2.0 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",
)