-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (30 loc) · 1017 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
project_urls = {
"Homepage": "https://github.com/eocode/ISO8583-Dlib",
"Issue tracker": "https://github.com/eocode/ISO8583-Dlib/issues",
"Code": "https://github.com/eocode/ISO8583-Dlib",
"Documentation": "https://github.com/eocode/ISO8583-Dlib/wiki",
}
setuptools.setup(
name='ISO8583-Dlib',
version='0.1.8',
author='eocode',
author_email='hola@eliasojedamedina.com',
license='MIT license',
description='Parser String to JSON for ISO8583 Package',
long_description_content_type="text/markdown",
long_description=open("README.md").read()
+ "\n\n"
+ open("CHANGELOG.md").read(),
packages=setuptools.find_packages(exclude=("tests",)),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
project_urls=project_urls,
include_package_data=True,
install_requires=[],
python_requires=">=3.6",
)