-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·37 lines (34 loc) · 1.21 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
35
36
37
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup
import os
import codecs
long_description = ''
if os.path.exists('README.rst'):
long_description = codecs.open('README.rst', encoding='UTF-8', mode='r').read(),
setup(
name = 'pyopening_hours',
version = '0.3.0',
description = 'Python module providing access to the opening_hours.js library which is written in JavaScript.',
author = 'Robin `ypid` Schneider',
author_email = '[email protected]',
url = 'https://github.com/ypid/pyopening_hours',
packages = ['pyopening_hours'],
license = 'GPLv3',
test_suite = 'tests',
keywords = ['OSM', 'OpenStreetMap', 'opening_hours'],
package_data = {
'pyopening_hours': [
'node_modules/opening_hours/node_modules/suncalc/suncalc.js',
'node_modules/opening_hours/node_modules/suncalc/package.json',
'node_modules/opening_hours/opening_hours.js',
'node_modules/opening_hours/package.json',
'node_modules/opening_hours/interactive_testing.js',
]
},
install_requires=[
'unittest2',
'python-dateutil',
],
long_description = long_description,
)