-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (46 loc) · 1.68 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from taxon import __version__, __author_name__, __author_email__
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
readme = f.read()
with open(os.path.join(os.path.dirname(__file__), 'LICENSE')) as f:
license = f.read()
setupinfo = dict(
name='redis-taxon',
version=__version__,
description='Redis-backed tagged data store',
long_description=readme,
author=__author_name__,
author_email=__author_email__,
url='https://github.com/jdp/taxon',
keywords=['redis', 'key-value', 'store', 'tag', 'taxonomy'],
include_package_data=True,
packages=find_packages(exclude=('tests', 'docs')),
license=license,
requires=['redis'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
]
)
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(**setupinfo)