-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 989 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 989 Bytes
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
from setuptools import setup, find_packages
VERSION = "0.1.1"
DESCRIPTION = "A better way to get market holidays"
def read(path):
with open(path, "r") as f:
return f.read()
setup(
name="Better-Holidays",
version=VERSION,
author="R5dan",
description=DESCRIPTION,
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=find_packages(exclude="tests"),
install_requires=[
"better-md>=0.3.4"
],
extras_require={},
keywords=["python", "better holidays", "better", "market", "stocks", "finance", "holidays", "better python"],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
],
url="https://github.com/Better-Python/better-holidays"
)