forked from Schiphol-Hub/ssim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 780 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name="ssim",
packages=["ssim"],
package_dir={"ssim": "ssim"},
version="0.3.0",
description="IATA SSIM (Standard Schedules Information Manual) file parser is a tool to read the standard IATA "
"file format.",
author="Rok Mihevc, Ramon Van Schaik, Howard Riddiough, Kevin Haagen",
author_email="[email protected]",
url="https://github.com/rok/ssim",
keywords=["parsing", "ssim", "data"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
],
install_requires=["python-dateutil"],
entry_points={"console_scripts": ["ssim = ssim.__main__:main"]},
)