-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
52 lines (48 loc) · 1.6 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
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='[email protected]',
url='https://github.com/learningequality/morango',
packages=find_packages(exclude=['tests', "tests.*"]),
package_dir={'morango':
'morango'},
include_package_data=True,
install_requires=[
"django>=3,<4",
"django-mptt>0.10.0",
"rsa>=3.4.2,<3.5",
"djangorestframework>3.10",
"django-ipware==4.0.2",
"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 :: 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',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
python_requires=">=3.6, <3.14",
)