-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (57 loc) · 2.15 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
61
62
63
64
65
66
#!/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-entirex',
version='1.3.0',
author='mmueller',
author_email='mm@softwareag.com',
description='adapya-entirex - Persistent messaging with webMethods EntireX Broker',
license='Apache License 2.0',
url='https://github.com/SoftwareAG/adapya-entirex',
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',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'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',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development',
],
keywords='softwareag webMethods EntireX Broker messaging',
long_description=README,
zip_safe=False,
scripts = ['adapya/entirex/cmdinfo.py',],
packages=['adapya', 'adapya.entirex', ],
install_requires=install_requires,
namespace_packages=['adapya'],
#extras_require={ 'dev': [ 'coverage','nose','pytest','pytest-pep8','pytest-cov' ]},
platforms='any',
**extra
)