source: setup.py @ 75ccc48

Last change on this file since 75ccc48 was d604f81, checked in by Alex Dehnert <adehnert@…>, 11 years ago

Add some missing dependencies

  • Property mode set to 100644
File size: 904 bytes
Line 
1from distutils.core import setup
2
3setup(
4    name = "remit",
5    version = "0.7.0",
6    packages = ["remit"],
7    install_requires = [
8        "pysapweb",
9        "django",
10        "django-treebeard",
11        "south",
12        # python-ldap is a C extension with various build dependencies
13        # on Ubuntu, try apt-get build-dep python-ldap
14        "python-ldap"
15    ],
16
17    author = "Alex Dehnert",
18    author_email = "remit@mit.edu",
19    url = "https://remit.scripts.mit.edu/trac/",
20    description = 'Tool for helping MIT student groups reimburse members ("remit" money to them)',
21    license = "LICENSE.txt",
22
23    keywords = ["mit", "accounting"],
24    classifiers = [
25        "Programming Language :: Python",
26        "Development Status :: 4 - Beta",
27        "Environment :: Web Environment",
28        "Framework :: Django",
29        "Topic :: Office/Business :: Financial :: Accounting",
30    ],
31)
Note: See TracBrowser for help on using the repository browser.