forked from pixel-ports/pyngsi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.23 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import pathlib
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyngsi",
version="2.1.7",
description="NGSI Python framework intended to build a Fiware NGSI Agent",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pixel-ports/pyngsi",
author="Fabien Battello",
author_email="[email protected]",
license="Apache 2.0",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
],
packages=setuptools.find_packages(),
include_package_data=False,
install_requires=["loguru", "requests", "requests-toolbelt", "shortuuid",
"more_itertools", "geojson", "flask", "cherrypy", "schedule", "openpyxl"],
test_requires=["pytest", "pytest-mock", "requests-mock", "pytest-flask"],
python_requires=">=3.8"
)