forked from cuker/django-ledger
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·32 lines (28 loc) · 957 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
31
32
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = '0.0.1'
LONG_DESC = """\
"""
setup(name='django-ledger',
version=VERSION,
description="A simple library for creating a double ledger system",
long_description=LONG_DESC,
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='django accounting ledger',
maintainer = 'Jason Kraus',
maintainer_email = 'zbyte64@gmail.com',
url='http://github.com/cuker/django-ledger',
license='New BSD License',
packages=find_packages(exclude=['ez_setup', 'tests']),
zip_safe=True,
install_requires=[
],
test_suite='tests.runtests.runtests',
)