forked from bvanelli/actualpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (19 loc) · 782 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import find_packages, setup
__version__ = "" # avoid linting issues on the file, but the line below will fill in the version
exec(open("actual/version.py").read())
setup(
name="actualpy",
version=__version__,
packages=find_packages(),
description="Implementation of the Actual API to interact with Actual over Python.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Brunno Vanelli",
author_email="brunnovanelli@gmail.com",
url="https://github.com/bvanelli/actualpy",
zip_safe=False,
project_urls={
"Issues": "https://github.com/bvanelli/actualpy/issues",
},
install_requires=["cryptography", "proto-plus", "python-dateutil", "requests", "sqlmodel"],
)