-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (42 loc) · 1.36 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
from setuptools import setup, find_packages
setup(
name='lsm-db-extras',
version='0.5.0',
url="https://github.com/mosquito/lsm-db-extras",
author='Dmitry Orlov',
author_email='me@mosquito.su',
description='Thread/Process safe shelves and other lsm-db helpers',
long_description=open("README.rst").read(),
license="Apache 2",
packages=find_packages(".", exclude=['tests', 'doc']),
install_requires=[
"lsm-db",
],
platforms="all",
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Microsoft',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
],
extras_require={
'develop': [
'coverage!=4.3',
'coveralls',
'pytest',
'pytest-cov',
'tox>=2.4',
],
},
)