forked from txels/autojenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.31 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
#!/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='carles@barrobes.com',
url='https://github.com/txels/autojenkins',
packages=['autojenkins'],
install_requires=['requests', 'jinja2'],
entry_points = dict(
console_scripts = [
'ajk-create = autojenkins.run:Commands.create',
'ajk-build = autojenkins.run:Commands.build',
'ajk-delete = autojenkins.run:Commands.delete',
'ajk-list = autojenkins.run:Commands.list',
],
),
#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',
],
)