-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 993 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
31
from setuptools import setup, find_packages
setup(
name='cloudpub',
description='Services for publishing products in cloud environments',
version='1.3.2',
keywords='stratosphere cloudpub cloudpublish',
author='Jonathan Gangi',
author_email='[email protected]',
url='https://github.com/release-engineering/cloudpub',
license='GPLv3+',
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
install_requires=[
'attrs',
'deepdiff',
'requests',
'tenacity',
'packaging',
"boto3>=1.34.117",
],
zip_safe=False,
)