-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
56 lines (49 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
#!/usr/bin/env python
# ***************************************************************************
# Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved.
# ***************************************************************************
r"""sqlanydb - pure Python SQL Anywhere database interface.
sqlanydb lets one access and manipulate SQL Anywhere databases
in pure Python.
https://github.com/sqlanywhere/sqlanydb
----------------------------------------------------------------"""
from setuptools import setup, find_packages
import os,re
with open( os.path.join( os.path.dirname(__file__), 'sqlanydb.py' ) ) as v:
VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(v.read()).group(1)
setup(name='sqlanydb',
version=VERSION,
description='pure Python SQL Anywhere database interface',
long_description=open('README.rst').read(),
author='Dan Cummins',
author_email='[email protected]',
url='https://github.com/sqlanywhere/sqlanydb',
packages=find_packages(),
py_modules=['sqlanydb'],
license='Apache 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'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',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)