-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 888 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
#!/usr/bin/env python
from distutils.core import setup
setup(name='Adamanteus',
version='0.7',
description='Database Backups with Version Control',
author='Josh Ourisman',
author_email='[email protected]',
license='BSD',
url='http://www.bitbucket.org/Josh/adamanteus/',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: System',
'Topic :: System :: Archiving',
'Topic :: System :: Archiving :: Backup',
'Topic :: Utilities',
],
platforms=['any',],
requires=['mercurial (>=1.6)', 'pymongo',],
scripts=['adamanteus.py',],)