-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (40 loc) · 1.38 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
import os
from setuptools import find_packages
from setuptools import setup
with open(os.path.join('pyrtifactory', 'VERSION')) as file:
version = file.read().strip()
with open('README.md') as file:
long_description = file.read()
setup(
name='pyrtifactory',
description='Python Artifactory REST API Wrapper',
long_description=long_description,
version=version,
download_url='https://github.com/redhandpl/pyrtifactory',
author='Krzysztof Pedrys <redhand>',
author_email='redhand@countzero.eu.org',
url='https://github.com/redhandpl/pyrtifactory',
keywords='artifactory rest api',
packages=find_packages(),
package_dir={'pyrtifactory': 'pyrtifactory'},
include_package_data=True,
zip_safe=False,
install_requires=[
'requests',
],
platforms='Platform Independent',
classifiers=[
'Development Status :: 0.1 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Natural Language :: English',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.x',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)