forked from feroda/django-simple-accounting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 1022 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
#!/usr/bin/env python
from distutils.core import setup
import os
setup(
name = "django-simple-accounting",
version = "dev",
description = """A simple, but generic, accounting application for Django.
This software was originally developed within Gasista Felice <http://www.gasistafelice.org>,
a project by REES Marche <http://www.reesmarche.org>.
""",
author="Lorenzo Franceschini",
author_email="[email protected]",
url = "https://github.com/seldon/django-simple-accounting",
packages = ["simple_accounting"],
classifiers = ["Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities"],
)