-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (27 loc) · 1022 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
with open('README.rst') as readme:
__doc__ = readme.read()
from distutils.core import setup
setup(
name='django-test-autocomplete',
version='0.1.4',
description=u'A shell-autocomplete helper that list TestCases and tests',
long_description=__doc__,
author = u'Javier Mansilla',
author_email = '[email protected]',
url='https://github.com/machinalis/django-test-autocomplete',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
scripts=['djntest', 'get_testcases_helper/get_testcases.py'],
data_files=[('etc/django-test-autocomplete', ['djntest.sh'])]
)