-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.09 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.09 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
# Standard library imports
import pathlib
# Third party imports
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).resolve().parent
# The text of the README file is used as a description
README = (HERE / "README.md").read_text()
# This call to set up() does all the work
setup(
name="avenieca-python",
version="0.1.4",
description="Python SDK for AveniECA",
url="https://github.com/aveni-hub/avenieca-python",
long_description=README,
long_description_content_type="text/markdown",
author="Ogban Ugot",
author_email="ogbanugot@gmail.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
packages=[
"avenieca",
"avenieca/producers",
"avenieca/utils",
"avenieca/api",
"avenieca/api/utils",
"avenieca/config"],
include_package_data=True,
install_requires=["kafka-python", "numpy", "requests", "dataclass-wizard"],
)