-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
58 lines (47 loc) · 1.41 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
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# https://packaging.python.org/en/latest/single_source_version.html
try:
execfile('sqlpuzzle/version.py')
except NameError:
exec(open('sqlpuzzle/version.py').read())
with open(os.path.join(os.path.dirname(__file__), "README.markdown")) as readme:
LONG_DESCRIPTION = readme.read()
setup(
name='sqlpuzzle',
version=VERSION,
packages=[
'sqlpuzzle',
'sqlpuzzle/_backends',
'sqlpuzzle/_common',
'sqlpuzzle/_queries',
'sqlpuzzle/_queryparts',
],
install_requires=[],
extras_require={
'devel': [
'pylint',
'pytest',
],
},
url='https://github.com/horejsek/python-sqlpuzzle',
author='Michal Horejsek',
author_email='[email protected]',
description='Python library for writing SQL queries.',
long_description=LONG_DESCRIPTION,
license='PSF',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
],
)