-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsetup.py
executable file
·37 lines (34 loc) · 1.1 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
#!/usr/bin/env python
from setuptools import setup
PACKAGE_NAME = 'python-foreman'
URL = 'https://github.com/david-caro/python-foreman'
if __name__ == '__main__':
setup(
autosemver=True,
install_requires=[
'autosemver',
'requests',
'six',
],
setup_requires=['autosemver'],
name=PACKAGE_NAME,
include_package_data=True,
packages=['foreman'],
description=(
'Simple low-level client library to access the Foreman API'
),
author='David Caro',
author_email='[email protected]',
url=URL,
bugtracker_url=URL + '/issues/',
license='GPLv2',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
)