-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (28 loc) · 929 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('docs/requirements.txt') as f:
required = f.read().splitlines()
setup(
name='django-tango',
version='0.10.0',
author=u'Tim Baxter',
author_email='[email protected]',
url='https://github.com/tBaxter/Tango',
license='MIT',
description='Faster, simpler Django content management.',
long_description=open('README.md').read(),
zip_safe=False,
packages=find_packages(),
include_package_data=True,
install_requires=required,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
)