-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (28 loc) · 843 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
from setuptools import setup
setup(
name='germanholidays',
use_scm_version=True,
url='http://github.com/daviskirk/german-holidays',
license='MIT',
author='Davis Kirkendall',
author_email='[email protected]',
description='German holidays in pandas',
packages=[
'german_holidays',
],
package_dir={'german_holidays': 'german_holidays'},
include_package_data=True,
install_requires=[
'pandas',
],
setup_requires=['pytest-runner', 'setuptools_scm'],
tests_require=['pytest', 'pytest-cov'],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
],
keywords=["pandas", "calendar", "holidays"],
platforms='any'
)