-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 716 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
NAME = "nexus-api-python-client"
VERSION = "1.0.5"
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
setup(
name=NAME,
version=VERSION,
description="Nexus Repository Manager Python API Client",
author="Simone Bruzzechesse",
author_email="b.sim619@gmail.com",
url="",
keywords=["Nexus API", "Python", "Nexus Repository Manager REST API"],
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description="""\
Sonatype Nexus API Client for Python (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
"""
)