-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (40 loc) · 1.21 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
exec(open('face_off/version.py').read())
tests_require = [
'pytest==2.8.2',
'pytest-pep8==1.0.6',
'pytest-cov==2.2.0',
]
setup(name='django-face-off',
version=__version__,
description='A Django application to provide a user switch',
long_description=read('README.md'),
author='Henning Kage',
author_email='<henning.kage@gmail.com>',
maintainer='Henning Kage',
maintainer_email='<henning.kage@gmail.com>',
url='https://github.com/hkage/django-face-off',
license='MIT',
classifiers=[
'Environment :: Web Environment',
'Development Status :: 4 - Beta',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
packages=find_packages(exclude=[
'tests',
'example'
]),
include_package_data=True,
install_requires=[
'Django>=1.4',
],
tests_require=tests_require,
extras_require={'test': tests_require},
)