-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
32 lines (29 loc) · 1.14 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
from setuptools import setup, find_packages
import os
import humanized_opening_hours
BASE_DIR = os.path.dirname(os.path.realpath(__file__))
setup(
name="osm_humanized_opening_hours",
version=humanized_opening_hours.__version__,
packages=find_packages(exclude=["doc", "tests"]),
author="rezemika",
author_email="reze.mika@gmail.com",
description="A parser for the opening_hours fields from OpenStreetMap.",
long_description=open(BASE_DIR + "/README.md", 'r').read(),
install_requires=["lark-parser", "babel", "astral"],
include_package_data=True,
url='http://github.com/rezemika/humanized_opening_hours',
keywords="openstreetmap opening_hours parser",
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Natural Language :: French",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Topic :: Other/Nonlisted Topic",
]
)