forked from gianchub/alembic-verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (54 loc) · 1.64 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
56
57
58
59
60
#!/usr/bin/env python
from codecs import open
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), 'r', 'utf-8') as stream:
readme = stream.read()
setup(
name='alembic-verify',
version='0.1.4',
description='A library to verify migrations and models are in sync.',
long_description=readme,
author='student.com',
author_email='[email protected]',
url='https://github.com/gianchub/alembic-verify',
packages=find_packages(exclude=['test', 'test.*']),
install_requires=[
"six>=1.10.0",
"sqlalchemy-diff>=0.1.3",
"alembic>=0.8.3",
],
extras_require={
'dev': [
"mock==2.0.0",
"pytest==3.0.3",
"pylint==1.5.1",
"flake8==3.0.4",
"coverage==4.2",
],
'docs': [
"Sphinx==1.3.1",
],
},
entry_points={
'pytest11': [
'pytest_alembic_verify=alembicverify.pyfixtures'
]
},
zip_safe=True,
license='Apache License, Version 2.0',
classifiers=[
"Programming Language :: Python",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
)