-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (34 loc) · 1.17 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
from setuptools import setup, find_packages
from jsonrpcdb import version, PROJECT
from codecs import open
from os import path
root_project = path.abspath(path.dirname(__file__))
with open(path.join(root_project, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=PROJECT,
version=version,
description='DB API v2.0 for JSON-RPC',
long_description=long_description,
url='https://github.com/LiveStalker/json-rpc-db',
author='Alexey V. Grebenshchikov',
author_email='mi.aleksio@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
],
keywords='db-api json-rpc',
packages=find_packages(exclude=['tests']),
install_requires=['requests'],
extras_require={
'test': ['coverage', 'json-rpc', 'werkzeug']
}
)