forked from thiagofigueiro/nexus3-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (55 loc) · 1.45 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
import io
from setuptools import find_packages, setup
package_name = 'nexus3-cli'
package_version = '0.5.0'
requires = [
'clint',
'docopt',
'future',
'inflect',
'py',
'future',
'requests[security]>=2.14.2',
'six',
]
test_requires = [
'codecov',
'flake8',
'pytest-cov',
'pytest-helpers-namespace',
'pytest-mock',
'pytest-faker',
]
with io.open('README.md', mode='r', encoding='utf-8') as f:
readme = f.read()
setup(
author='Thiago Figueiró',
name=package_name,
version=package_version,
description='A python-based CLI for Sonatype Nexus OSS 3',
url='https://github.com/thiagofigueiro/nexus3-cli',
long_description=readme,
long_description_content_type="text/markdown",
install_requires=requires,
tests_require=test_requires,
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 2.7',
],
packages=find_packages('src'),
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'nexus3=nexuscli.cli:main',
],
},
extras_require={'test': test_requires},
)