forked from BertrandBordage/django-terms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (29 loc) · 900 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
31
32
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
setup(
name='django-terms',
version='0.3.2',
author='Bertrand Bordage',
author_email='[email protected]',
url='https://github.com/BertrandBordage/django-terms',
description='Site-wide adds a definition '
'or a link for specialized terms.',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
license='BSD',
packages=find_packages(),
install_requires=[
"Django >= 1.4",
],
include_package_data=True,
zip_safe=False,
)