-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·47 lines (43 loc) · 1.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
version = open('VERSION').read().strip()
setup(
name='django-north',
version=version,
description="""Yet another way to manage migrations: DBA as a service""",
long_description=readme + '\n\n' + history,
author=u'Lauréline Guérin',
author_email='[email protected]',
url='https://github.com/peopledoc/django-north',
packages=[
'django_north',
],
include_package_data=True,
install_requires=[
"Django>=1.11",
"septentrion[psycopg2]>=0.6.1",
],
tests_require=["tox"],
license="MIT",
zip_safe=False,
keywords='django-north',
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)