forked from NatLibFi/Annif-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 800 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='annif-client',
version='0.3.1',
url='https://github.com/NatLibFi/Annif-client',
author='Osma Suominen',
author_email='[email protected]',
description='Python client library for accessing Annif REST API',
long_description=read('README.md'),
long_description_content_type='text/markdown',
py_modules=['annif_client'],
install_requires=['requests'],
extras_require={
'dev': ['bumpversion','pytest','responses']
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
)