-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
52 lines (47 loc) · 1.62 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
45
46
47
48
49
50
51
52
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst', 'rb') as f:
ld = f.read().decode('utf8')
long_description = ld.replace(ld[0:ld.find('nece?')], '')
version = '0.8.2'
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,
long_description_content_type='text/markdown',
author='Can Mustafa Özdemir',
author_email='[email protected]',
url=url,
download_url=download_url,
keywords=['translations', 'i18n', 'language', 'multilingual'],
packages=['nece'],
install_requires=[
'Django>=1.9',
'six>=1.10.0',
],
extras_require={
'psycopg2': ['psycopg2>=2.8.1'],
'psycopg2-binary': ['psycopg2-binary>=2.8.1'],
},
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",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Text Processing :: Linguistic",
],
)