-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (24 loc) · 869 Bytes
/
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
import setuptools
with open("./README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open('./requirements.txt', encoding="utf-8") as f:
requirements = f.read().splitlines()
setuptools.setup(
name="alvenirclient",
version="0.0.1",
author="Rasmus Arpe Fogh Egebæk",
author_email="rasmus@alvenir.ai",
description="Client for alvenir gRPC streaming services",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=requirements,
license_file="LICENCE.txt",
url="https://github.com/alvenirai/alvenirclient",
classifiers=[
"Programming Language :: Python :: 3",
'Development Status :: 5 - Production/Stable',
"Operating System :: OS Independent",
],
)