-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 1.11 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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='parse_ecli',
version='0.9.5',
description='Parse German ECLI',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/kiersch/parse_ecli',
author='Philipp Kiersch',
author_email='[email protected]',
license='MIT',
packages=['parse_ecli'],
python_requires='>=3.8',
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Legal Industry",
"Topic :: Text Processing :: Filters",
'Topic :: Text Processing :: Linguistic',
],
include_package_data=True,
entry_points={
'console_scripts': [
'parse-ecli = parse_ecli.parse_ecli:main_func',
],
},
)