-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (30 loc) · 1.21 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
from os import path
from setuptools import find_packages
from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pykorm',
version='0.60.0',
description='Pykorm: a dead simple Kubernetes ORM',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Frankkkkk/pykorm',
author='Frank Villaro-Dixon - Infomaniak Network SA',
author_email='frank.villaro@infomaniak.com',
license='GNU General Public License v3 (GPLv3)',
packages=find_packages(),
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.6",
install_requires=['kubernetes>=11.0', 'dpath==2.0.1'])