forked from absent1706/sqlalchemy-mixins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (53 loc) · 2.22 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
from setuptools import setup
"""
0. python3 -m pip install --user --upgrade twine
1. python3 setup.py sdist bdist_wheel
2. python3 -m twine upload dist/*
see https://packaging.python.org/tutorials/packaging-projects/
"""
def requirements():
import os
filename = os.path.join(os.path.dirname(__file__), 'requirements.txt')
return [line.rstrip('\n') for line in open(filename).readlines()]
setup(name='sqlalchemy_mixins',
version='1.6.rc01',
description='Active Record, Django-like queries, nested eager load '
'and beauty __repr__ for SQLAlchemy',
url='https://github.com/aurthurm/async-sqlalchemy-mixins',
download_url='https://github.com/aurthurm/async-sqlalchemy-mixins/archive/master.tar.gz',
author='Aurthur Musendame',
author_email='[email protected]',
license='MIT',
packages=['async-sqlalchemy_mixins'],
package_data={'sqlalchemy_mixins': ['py.typed', '*.pyi', '**/*.pyi']},
zip_safe=False,
include_package_data=True,
install_requires=[
"SQLAlchemy >= 1.4.0",
"six",
"typing; python_version < '3.10'"
],
keywords=['sqlalchemy', 'active record', 'activerecord', 'orm',
'django-like', 'django', 'eager load', 'eagerload', 'repr',
'__repr__', 'mysql', 'postgresql', 'pymysql', 'sqlite'],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'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 :: Implementation :: CPython',
'Topic :: Database',
],
test_suite='nose.collector',
tests_require=['nose', 'nose-cover'],
)