-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (32 loc) · 868 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
34
from setuptools import setup, find_packages
import os
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
long_description = f.read()
f.close()
setup(
name='holidays-jp',
version='1.0.2',
description='Calculate the Japanese holidays since 1948.',
long_description=long_description,
author='mo.kejp',
url='https://github.com/mokejp/holidays_jp',
packages=['holidays_jp', 'holidays_jp.countries'],
install_requires=[
'python-dateutil',
],
license='MIT License',
zip_safe=True,
keywords=[
'holidays_jp',
'holidays-jp',
'holiday',
'japanese',
'japan',
],
classifiers=(
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7'
),
test_suite="holidays_jp.tests",
)