-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 938 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 938 Bytes
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
from setuptools import setup, find_packages
setup(
name='AcornAccounting',
version='0.12.0',
author='Pavan Rikhi',
author_email='pavan.rikhi@gmail.com',
packages=find_packages(),
license='LICENSE.txt',
description='Accounting Software for Communities.',
long_description=open('README.rst').read(),
install_requires=[
"Django >= 1.4",
"django-cache-machine",
"django-constance",
"django-mptt",
"django-parsley",
"python-dateutil",
],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Financial and Insurance Industry',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Office/Business :: Financial :: Accounting'
],
keywords="accounting django egalitarian community",
include_package_data=True,
zip_safe=False,
)