forked from txels/autojenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.14 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
from ajk_version import __version__
setup(
name='autojenkins',
description='Jenkins Remote Control Library',
long_description=open('README.rst').read(),
version=__version__,
author='Carles Barrobés',
author_email='[email protected]',
url='https://github.com/txels/autojenkins',
packages=['autojenkins'],
install_requires=['docopt', 'requests', 'jinja2'],
entry_points=dict(
console_scripts=[
'autojenkins = autojenkins.run:Commands.main'
],
),
#include_package_data=True,
package_data={
'': ['*.txt', '*.rst'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries',
],
)