-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (28 loc) · 932 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
31
32
33
import codecs
import os
from setuptools import setup, find_packages
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django_testdriver',
version=__import__('django_testdriver').__version__,
description='A custom JsTestDriver spec runner etc.',
author='spenoir',
author_email='[email protected]',
packages=find_packages(),
url='http://github.com/spenoir/django_testdriver',
long_description=read('README.md'),
install_requires=[
'pyyaml',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', # example license
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
],
include_package_data=True,
)