-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·38 lines (32 loc) · 1.01 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
36
37
38
#!/usr/bin/env python
import errno
import os
import sys
from setuptools import setup
from compose_operator import __doc__, __version__
project_directory = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(project_directory, 'README.rst')
with open(readme_path) as readme_file:
long_description = readme_file.read()
setup(
name='compose-operator',
version=__version__,
description=__doc__.split('\n')[0],
long_description=long_description,
long_description_content_type='text/markdown',
license='0BSD',
url='https://github.com/mentalisttraceur/python-compose-operator',
author='Alexander Kozhevnikov',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
py_modules=['compose_operator'],
python_requires=">=3.8",
requires=[
'compose (>=1.4.8)',
'wrapt (>=1.15.0)',
],
)