-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (28 loc) · 1016 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
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
import multi_registry
setup(
name = "multi-registry",
version = multi_registry.__version__,
description = 'A module that aggregates key-value attributes from multiple sources',
packages = find_packages(),
author = 'Evgeny.Fadeev',
author_email = '[email protected]',
license = 'BSD',
keywords = 'settings, registry',
url = 'http://askbot.org',
include_package_data = True,
install_requires = ['import-utils',],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Communications :: Usenet News',
],
long_description = multi_registry.MultiRegistry.__doc__
)