forked from hammem/monarchmoney
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.02 KB
/
setup.py
File metadata and controls
33 lines (30 loc) · 1.02 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
from setuptools import setup
with open("requirements.txt", "r") as f:
install_requires = f.read().split("\n")
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="monarchmoney",
description="Monarch Money API for Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/312-dev/monarchmoney",
author="hammem",
author_email="hammem@users.noreply.github.com",
maintainer="312.dev",
maintainer_email="dev@312.dev",
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",
],
)