-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (40 loc) · 1.36 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import favicon
def read_file(name):
with open(name) as fd:
return fd.read()
keywords = ['django', 'web', 'favicon', 'html']
setup(
name='django-super-favicon',
version=favicon.__version__,
description=favicon.__doc__,
long_description=read_file('README.rst'),
author=favicon.__author__,
author_email=favicon.__email__,
install_requires=read_file('requirements.txt'),
license='BSD',
url=favicon.__url__,
keywords=keywords,
packages=find_packages(exclude=[]),
include_package_data=True,
test_suite='runtests.main',
tests_require=read_file('requirements-tests.txt'),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: Console',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)