forked from kmmbvnr/django-jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (41 loc) · 1.63 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
from os import path
from setuptools import setup
read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
setup(
name='django-jenkins',
version='0.18.1',
author='Mikhail Podgurskiy',
author_email='[email protected]',
description='Plug and play continuous integration with django and jenkins',
long_description=read(path.abspath(path.join(path.dirname(__file__), 'README.rst'))),
license='LGPL',
platforms=['Any'],
keywords=['pyunit', 'unittest', 'testrunner', 'hudson', 'jenkins',
'django', 'pylint', 'pep8', 'pyflakes', 'csslint', 'scsslint',
'jshint', 'coverage'],
url='http://github.com/kmmbvnr/django-jenkins',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing'
],
install_requires=[
'Django>=1.7',
],
packages=['django_jenkins', 'django_jenkins.management',
'django_jenkins.tasks', 'django_jenkins.management.commands'],
package_data={'django_jenkins': ['tasks/pylint.rc']},
zip_safe=False,
include_package_data=True
)