-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·30 lines (29 loc) · 1 KB
/
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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import io
from setuptools import setup, find_packages
setup(
name="django-expenses",
version="0.6.0",
description="A comprehensive system for managing expenses",
keywords="django,expenses",
author="Chris Warrick",
author_email="[email protected]",
url="https://github.com/Kwpolska/django-expenses",
license="3-clause BSD",
long_description=io.open("./README.rst", "r", encoding="utf-8").read(),
platforms="any",
zip_safe=False,
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Topic :: Office/Business :: Financial",
],
packages=find_packages(),
install_requires=["Django>=3.0", "Babel", "pygal", "iso8601", "attrs"],
include_package_data=True,
)