source: setup.py @ 2516e60

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

Make remit installable with distutils (at least for dev)

  • Property mode set to 100644
File size: 739 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    ],
12
13    author = "Alex Dehnert",
14    author_email = "remit@mit.edu",
15    url = "https://remit.scripts.mit.edu/trac/",
16    description = 'Tool for helping MIT student groups reimburse members ("remit" money to them)',
17    license = "LICENSE.txt",
18
19    keywords = ["mit", "accounting"],
20    classifiers = [
21        "Programming Language :: Python",
22        "Development Status :: 4 - Beta",
23        "Environment :: Web Environment",
24        "Framework :: Django",
25        "Topic :: Office/Business :: Financial :: Accounting",
26    ],
27)
Note: See TracBrowser for help on using the repository browser.