-
-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 919 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 919 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
import os
from setuptools import setup
install_requires = open("requirements.txt", "r").read().split("\n")
setup(
name="monarchmoney",
description="Monarch Money API for Python",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/hammem/monarchmoney",
author="hammem",
author_email="hammem@users.noreply.github.com",
license="MIT",
keywords="monarch money, financial, money, personal finance",
install_requires=install_requires,
packages=["monarchmoney"],
include_package_data=True,
zip_safe=False,
platforms="any",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Topic :: Office/Business :: Financial",
],
)