forked from AliyevH/mad-migration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (48 loc) · 1.76 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="madmigration",
packages=find_packages(),
version="0.1.8",
entry_points="""
[console_scripts]
madmigrate=madmigration.scripts.commands:cli
""",
author="Hasan Aliyev, Tural Muradov, Sabuhi Shukurov",
license='MIT',
description="Mad migration",
long_description_content_type="text/markdown",
url="https://github.com/MadeByMads/mad-migration",
long_description=long_description,
install_requires=["click>=7.1.2", "SQLAlchemy>=1.4.0",'pydantic>=1.7.2',"alembic>=1.4.2", "PyYAML>=5.3.1"],
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_packge_data=True,
tests_require=[
'pytest',
'mock',
],
platforms=['any'],
python_requires='>=3.6',
project_urls={
'Bug Reports': 'https://github.com/MadeByMads/mad-migration/issues',
'Say Thanks!': 'https://github.com/MadeByMads/mad-migration/network/dependencies',
'Source': 'https://github.com/MadeByMads/mad-migration',
},
extras_require={
'mysql': ["mysqlclient>=2.0.1"],
'postgresql': ["psycopg2>=2.8.5"],
},
)