This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
forked from Koppeltaal/Koppeltaal-Python-Connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (58 loc) · 1.83 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
67
68
69
70
71
import sys
from setuptools import setup, find_packages
version = '1.3.5.15.dev0'
with open('README.md') as file:
long_description = file.read()
install_requires = [
'six',
'lxml',
'python-dateutil',
'requests',
'setuptools',
'zope.interface >= 4.4',
]
tests_require = [
'PyHamcrest >= 1.9',
'selenium >= 3.8',
]
if sys.version_info.major == 2:
install_requires.append('configparser')
tests_require.append('mock==1.0.1')
setup(
name='koppeltaal',
version=version,
license='AGPL',
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
long_description=long_description,
author='Koppeltaal community',
url='https://github.com/Koppeltaal/Koppeltaal-Python-Connector',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: Dutch',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=install_requires,
extras_require={'test': tests_require},
entry_points={
'console_scripts': [
'koppeltaal = koppeltaal.console:console'
],
}
)