-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 983 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
33
from setuptools import setup, find_packages
__version__ = __import__('argus').__version__
description = "Money sharing app. In development. Probably getting a rename later."
setup(
name="argus",
version='.'.join([str(v) for v in __version__]),
url="http://github.com/littleweaver/django-argus",
description=description,
long_description=description,
maintainer='Little Weaver Web Collective, LLC',
maintainer_email='[email protected]',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Office/Business :: Financial',
],
platforms=['OS Independent'],
install_requires=[
'django>=1.7',
'Pillow>=2.3.0',
]
)