-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 937 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
from setuptools import setup, find_packages
setup(
name='starmap-client',
description='Client for StArMap',
version='2.1.0',
keywords='stratosphere content artifact mapping cli',
author='Jonathan Gangi',
author_email='[email protected]',
url='https://github.com/release-engineering/starmap-client',
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',
'requests',
'requests_mock',
'urllib3<2.0.0'
],
zip_safe=False,
)