-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
30 lines (25 loc) · 873 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
29
30
#!/usr/bin/env python
import setuptools
from carbonnow import __version__
with open('README.md') as fh:
long_description = fh.read()
with open('requirements.txt') as f:
dependencies = [_.strip() for _ in f]
setuptools.setup(
name='carbonnow',
version=__version__,
description='carbon.now.sh API Wrapper powered by Carbonara',
long_description=long_description,
long_description_content_type='text/markdown',
license='GNU Lesser General Public License v3 (LGPLv3)',
author='Pokurt',
author_email='[email protected]',
url='https://github.com/OpenRestfulAPI/carbon-now-sh-API-Wrapper',
packages=setuptools.find_packages(exclude='example.py'),
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.8',
],
install_requires=dependencies,
python_requires='>=3.6',
)