forked from learningequality/morango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (50 loc) · 1.66 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
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
from __future__ import unicode_literals
import io
from setuptools import find_packages
from setuptools import setup
import morango
readme = io.open("README.md", mode="r", encoding="utf-8").read()
setup(
name='morango',
version=morango.__version__,
description="Pure Python sqlite-based Django DB replication engine.",
long_description=readme,
long_description_content_type="text/markdown",
author="Learning Equality",
author_email='dev@learningequality.org',
url='https://github.com/learningequality/morango',
packages=find_packages(exclude=['tests', "tests.*"]),
package_dir={'morango':
'morango'},
include_package_data=True,
install_requires=[
"django>=1.10,<2",
"django-mptt<0.10.0",
"rsa>=3.4.2,<3.5",
"djangorestframework==3.9.1",
"django-ipware>=1.1.6,<1.2",
"future==0.16.0",
"requests",
"ifcfg",
],
license="MIT",
zip_safe=False,
keywords=['database', 'syncing', 'morango'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)