-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (26 loc) · 949 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
from setuptools import setup, find_packages
import sys, os
version = '0.1'
setup(name='djangobrowsertest',
version=version,
description="django browser testing that lets the programmer choose which test tool he'll use",
long_description='',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
],
keywords='browser django python test',
author='Vanderson Mota',
author_email='[email protected]',
url='http://github.com/vandersonmota/django-browsertest',
license='MIT License',
packages=['djangobrowsertest', ],
include_package_data=True,
zip_safe=False,
install_requires=['django',],
entry_points="",
)