-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 832 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (24 loc) · 832 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='django-variant',
version='0.1.1',
description='Django variant testing framework',
author='Jeremy Sattefield',
author_email='jsatt@jsatt.com',
url='https://github.com/jsatt/django-variant',
packages=[
'variant', 'variant.migrations'],
install_requires=[
'Django>=1.5', 'six'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Site Management'],
)