-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
46 lines (43 loc) · 1.49 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
PACKAGE = "translation_manager"
NAME = "django-translation-manager"
DESCRIPTION = "Django app for managing translations from admin"
AUTHOR = "Pavel Císař, Martin Kubát, Mikuláš Mrva, Jakub Ladra, Michal Kašpar, Jan Češpivo, Milan Vlasák - COEX s.r.o (http://www.coex.cz)"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/COEXCZ/django-translation-manager"
VERSION = '1.3.0'
LICENSE = "Mozilla Public License 2.0 (MPL 2.0)"
with open('README.rst') as readme:
LONG_DESCRIPTION = readme.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
packages=["translation_manager"],
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Internationalization"
],
install_requires=[
"polib",
"django>=2.2.20",
"djangorestframework>=3.7.1",
"requests>=2.18.4",
"django-rq==2.4.1",
],
test_suite="runtests.run_tests",
)