-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (35 loc) · 1.25 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
#!/usr/bin/env python
"""Setup script for smurf's Python database module"""
from distutils.core import setup
description = "Simple syntax for any database"
long_description = \
"""
This module contains database access methods which are very easy
to use and work with any Python database module without touching
parameterized SQL syntax.
"""
setup (name = "sqlmix",
use_scm_version={"version_scheme": "guess-next-dev", "local_scheme": "dirty-tag"},
setup_requires=["setuptools_scm"],
description = description,
long_description = long_description,
author = "Matthias Urlichs",
author_email = "[email protected]",
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Database :: Front-Ends',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
],
url = "https://github.com/smurfix/sqlmix",
license = 'GPLv3',
platforms = ['POSIX'],
packages = ['sqlmix'],
install_requires=[
"anyio",
"trio",
"trio-mysql",
]
)