-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (28 loc) · 997 Bytes
/
setup.py
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
import setuptools
import versioneer
setuptools.setup(
name="firefly-cli",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Afonso Costa",
description="A python-based command line interface for practically entering expenses in Firefly III",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/afonsoc12/firefly-cli",
packages=setuptools.find_packages(),
install_requires=[
"cmd2>=2.4.1,<3",
"requests-cache>=0.9.4,<1",
"tabulate>=0.8.9,<1",
"pyxdg>=0.28,<1",
],
entry_points={"console_scripts": ["firefly-cli = firefly_cli:main"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
license="Apache-2.0 license",
license_files="LICENSE",
)