-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (36 loc) · 1.29 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
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name='SqlalchemyMixin',
version="0.0.38",
author="Yaşar Özyurt",
author_email="blueromans@gmail.com",
description='Active Record, Django-like queries, nested eager load '
'and beauty __repr__ for SQLAlchemy',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/blueromans/SqlalchemyMixin.git',
project_urls={
"Bug Tracker": "https://github.com/blueromans/SqlalchemyMixin/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"SQLAlchemy >= 1.0",
"six",
"python-slugify",
"phonenumbers",
"arrow",
"typing; python_version < '3.5'"
],
keywords=['sqlalchemy', 'active record', 'activerecord', 'orm',
'django-like', 'django', 'eager load', 'eagerload', 'repr',
'__repr__', 'mysql', 'postgresql', 'pymysql', 'sqlite'],
packages=['sqlalchemy_mixins', 'sqlalchemy_mixins.extra'],
python_requires=">=3.6",
)