-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
34 lines (33 loc) · 1.04 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
from setuptools import setup
from io import open
setup(
name="vacances_scolaires_france",
license="MIT",
packages=["vacances_scolaires_france"],
version="0.10.0",
description="Get school holiday dates for metropolitan France",
author="Antoine Augusti",
author_email="[email protected]",
url="https://github.com/AntoineAugusti/vacances-scolaires-france",
keywords=[
"vacances",
"scolaires",
"calendrier",
"france",
"school",
"holiday",
"calendar",
],
extras_require={"dev": ["pytest"]},
package_data={"vacances_scolaires_france": ["data/data.csv"]},
python_requires=">=2.7, <4",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
)