forked from tatterdemalion/django-nece
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.36 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.36 KB
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
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as f:
ld = f.read()
long_description = ld.replace(ld[0:ld.find('nece?')], '')
version = '0.5.3'
description = "A content translation framework using Postgresql's jsonb" + \
" field in the background"
url = 'https://github.com/tatterdemalion/django-nece'
download_url = '/'.join([url, 'tarball', version])
setup(
name='nece',
version=version,
description=description,
long_description=long_description,
author='Can Mustafa Özdemir',
author_email='[email protected]',
url=url,
download_url=download_url,
keywords=['translations', 'i18n', 'language', 'multilingual'],
packages=['nece', 'nece.fields', 'nece.fields.pgjson',
'nece.fields.pgjson.forms'],
install_requires=[
'Django>=1.8',
'psycopg2>=2.5.4'
],
license='BSD License',
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Text Processing :: Linguistic",
],
)