-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (28 loc) · 1.06 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
"""setup.py for microkubes python library.
"""
import setuptools
with open('README.md', 'r') as readmef:
long_description = readmef.read()
with open('requirements.txt') as reqf:
required_dependencies = [req.strip() for req in reqf.readlines()]
setuptools.setup(
name="microkubes-python",
version="0.0.1",
author="Pavle Jonoski",
author_email="[email protected]",
description="Microkubes Python Library - tools for building microservices on top of Microkubes platform.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Microkubes/microkubes-python",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Framework :: Microkubes",
),
install_requires=required_dependencies,
)