1
|
|
|
from os import path |
2
|
|
|
|
3
|
|
|
from setuptools import find_packages, setup |
4
|
|
|
|
5
|
|
|
here = path.abspath(path.dirname(__file__)) |
6
|
|
|
|
7
|
|
|
with open(path.join(here, 'README.rst'), encoding='utf-8') as handle: |
8
|
|
|
long_description = handle.read() |
9
|
|
|
|
10
|
|
|
setup( |
11
|
|
|
name='Kerapu', |
12
|
|
|
|
13
|
|
|
version='2.0.3', |
14
|
|
|
|
15
|
|
|
description='Een implementatie van de grouper', |
16
|
|
|
long_description=long_description, |
17
|
|
|
|
18
|
|
|
url='https://github.com/SetBased/py-kerapu', |
19
|
|
|
|
20
|
|
|
author='Paul Water', |
21
|
|
|
author_email='[email protected]', |
22
|
|
|
|
23
|
|
|
license='MIT', |
24
|
|
|
|
25
|
|
|
classifiers=[ |
26
|
|
|
'Development Status :: 5 - Production/Stable', |
27
|
|
|
|
28
|
|
|
'Intended Audience :: Developers', |
29
|
|
|
|
30
|
|
|
'License :: OSI Approved :: MIT License', |
31
|
|
|
'Natural Language :: Dutch', |
32
|
|
|
'Operating System :: OS Independent', |
33
|
|
|
|
34
|
|
|
'Programming Language :: Python :: 3', |
35
|
|
|
'Programming Language :: Python :: 3.6', |
36
|
|
|
'Programming Language :: Python :: 3.7', |
37
|
|
|
'Programming Language :: Python :: 3.8', |
38
|
|
|
'Programming Language :: Python :: 3.9', |
39
|
|
|
], |
40
|
|
|
|
41
|
|
|
keywords='DBC Grouper', |
42
|
|
|
|
43
|
|
|
packages=find_packages(exclude=['build', 'test']), |
44
|
|
|
|
45
|
|
|
entry_points={ |
46
|
|
|
'console_scripts': [ |
47
|
|
|
'kerapu = kerapu.application.kerapu:main', |
48
|
|
|
], |
49
|
|
|
}, |
50
|
|
|
|
51
|
|
|
install_requires=['cleo==0.6.8', |
52
|
|
|
'lxml>=4.6.1, <5'] |
53
|
|
|
) |
54
|
|
|
|