forked from tsvi/py-libhdate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (38 loc) · 1.23 KB
/
setup.py
File metadata and controls
46 lines (38 loc) · 1.23 KB
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
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
__author__ = "Royi Reshef"
__maintainer__ = "Tsvi Mostovicz"
__version__ = "0.9.7"
import sys
from codecs import open
from os.path import abspath, dirname, join
from setuptools import setup
here = abspath(dirname(__file__))
# Get the long description from the README file
with open(join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
REQUIRES = ["pytz"]
if sys.version_info.major < 3:
REQUIRES.extend(["enum34"])
setup(
name="hdate",
version=__version__,
description="Hebrew date and Zmanim",
long_description=long_description,
url="https://github.com/py-libhdate/py-libhdate",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", # noqa: E501
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
author=__author__,
author_email="roy.myapp@gmail.com",
maintainer=__maintainer__,
maintainer_email="ttmost@gmail.com",
license="GPLv3+",
packages=["hdate"],
install_requires=REQUIRES,
extras_require={"dev": ["tox", "pre-commit"]},
python_requires=">=2.7",
)