-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (34 loc) · 1.2 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
import sys
from setuptools import setup, find_packages
with open('README.rst', 'rb') as f:
long_description = f.read().decode('utf-8')
setup(
name = "django-complex-fields",
version = "0.1.0",
license = "LGPL",
description = "An extenstion for Django that provides translation, version and source by field. Can be adapted to personalize fields",
long_description = "long_description",
author = "Guillaume Auger",
author_email = "[email protected]",
url = "https://github.com/caravancoop/complex-fields",
packages = find_packages(),
package_data = {
"complex_fields": ["templates/*.html"]
},
zip_safe=False,
install_requires=[
"Django>=1.8.3",
"django-reversion==1.9.3",
],
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"Licence :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.4",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Text Processing :: Linguistic",
]
)