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