-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.19 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.19 KB
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
""" Standard PyPi dynamic metadata configuration
"""
import pathlib
from setuptools import setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='ediclean',
version='0.1.5',
description=
'A Python package to strip non-standard text blocks from UN/EDIFACT messages.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/goOICT/ediclean',
author='Zoltan Janota',
author_email='zoltan.janota@un.org',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Text Processing',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
],
keywords='paxlst edifact un/edifact',
packages=['ediclean'],
python_requires='>=3.4',
install_requires=[''],
entry_points={
'console_scripts': [
'ediclean = ediclean.__main__:main',
],
},
project_urls={
'Bug Reports': 'https://github.com/goOICT/ediclean/issues',
'Source': 'https://github.com/goOICT/ediclean',
},
)