-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
31 lines (28 loc) · 1013 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
from setuptools import setup, find_packages
from vdm import __version__
from vdm import __description__
from vdm import __doc__ as __long_description__
setup(
name = 'vdm',
version = __version__,
packages = find_packages(),
install_requires = [ ],
# metadata for upload to PyPI
author = "Rufus Pollock (Open Knowledge Foundation)",
author_email = "[email protected]",
description = __description__,
long_description = __long_description__,
license = "MIT",
keywords = "versioning sqlobject sqlalchemy orm",
url = "http://www.okfn.org/vdm/",
download_url = "https://github.com/okfn/vdm",
zip_safe = False,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'],
)