-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 830 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 830 Bytes
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
from setuptools import setup
__about__ = {}
with open("uaconnect/__about__.py") as fp:
exec(fp.read(), None, __about__)
setup(
name="uaconnect",
version=__about__["__version__"],
author="Airship Tools",
author_email="tools@airship.com",
url="https://airship.com/",
description="Python package for using Airship Real-Time Data Streaming",
long_description=open("README.rst").read(),
license="Apache v2",
packages=["uaconnect", "uaconnect.ext"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
],
install_requires=[
"requests>=2.27",
],
)