-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (64 loc) · 2.49 KB
/
Copy pathsetup.py
File metadata and controls
73 lines (64 loc) · 2.49 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
# requires Python V2.7 or higher
from __future__ import print_function # PY3
import os,sys
try:
from setuptools import setup
except:
print('no setuptools found, trying distutils.core')
from distutils.core import setup # noqa
pver=sys.version[0]
prel=sys.version[2]
print('Active runtime:',sys.version, pver, prel)
extra = {}
# extra['install_requires'] = ['uuid']
install_requires = [
'adapya-base>=1.3.0',
]
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup( name='adapya-adabas',
version='1.3.0',
author='mmueller',
author_email='mm@softwareag.com',
description='adapya-adabas - Software AG Adabas Database API for Python',
license='Apache License 2.0',
url='https://github.com/SoftwareAG/adapya-adabas',
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: AIX',
'Operating System :: POSIX :: HP-UX',
'Operating System :: POSIX :: SunOS/Solaris',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: Other',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'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 :: 3.11',
'Topic :: Database',
'Topic :: Software Development',
],
keywords='softwareag adabas database',
long_description=README,
zip_safe=False,
#entry_points={
# "console_scripts": ["dblist = adapya.adabas.scripts.dblist:main_func",]
# },
scripts = ['adapya/adabas/scripts/dblist.py','adapya/adabas/scripts/mproc.py',
'adapya/adabas/scripts/ticker.py',
'adapya/adabas/scripts/search.py','adapya/adabas/scripts/asmfreader.py',],
packages=['adapya', 'adapya.adabas', 'adapya.adabas.scripts'],
install_requires=install_requires,
namespace_packages=['adapya'],
#extras_require={ 'dev': [ 'coverage','nose','pytest','pytest-pep8','pytest-cov' ]},
platforms='any',
**extra
)