source: setup.py

Last change on this file was 9a12b18, checked in by Alex Dehnert <adehnert@…>, 11 years ago

Explain why Remit has its dependencies

Also, record the mechanize dependency.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1from distutils.core import setup
2
3setup(
4    name = "remit",
5    version = "0.7.0",
6    packages = ["remit"],
7    install_requires = [
8        # Server
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        # Client
17        "pysapweb",     # SAPWeb
18        "mechanize",    # site->client downloader (for SAPWeb or vouchers)
19    ],
20
21    author = "Alex Dehnert",
22    author_email = "remit@mit.edu",
23    url = "https://remit.scripts.mit.edu/trac/",
24    description = 'Tool for helping MIT student groups reimburse members ("remit" money to them)',
25    license = "LICENSE.txt",
26
27    keywords = ["mit", "accounting"],
28    classifiers = [
29        "Programming Language :: Python",
30        "Development Status :: 4 - Beta",
31        "Environment :: Web Environment",
32        "Framework :: Django",
33        "Topic :: Office/Business :: Financial :: Accounting",
34    ],
35)
Note: See TracBrowser for help on using the repository browser.