forked from doccano/doccano-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.29 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
from setuptools import setup
base_packages = ['requests']
dev_packages = [
'black>=19.3b0',
'flake8>=3.6.0',
'flake8-annotations==2.1.0',
'flake8-bandit==2.1.2',
'flake8-bugbear==20.1.4',
'flake8-docstrings==1.5.0',
'darglint==1.4.0',
'pre-commit>=2.2.0',
]
setup(
name='doccano-client',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='A simple client wrapper for the doccano API.',
long_description='This simple API wrapper allows users to easily get data \
from and send data to a doccano instance.',
keywords='doccano api client wrapper',
url='http://github.com/doccano/doccano_api_client',
author='Andrew Parsons',
author_email='[email protected]',
license='MIT',
packages=['doccano_api_client'],
install_requires=base_packages,
extras_require={'dev': dev_packages},
zip_safe=False,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
)