-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (56 loc) · 1.6 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
52
53
54
55
56
57
58
59
from __future__ import print_function
import sys
from os import path
try:
from setuptools import setup
except ImportError:
print("libestg9s4a needs setuptools.", file=sys.stderr)
print("Please install it using your package-manager or pip.", file=sys.stderr)
sys.exit(1)
setup(
name='libestg9s4a',
version='0.0.1',
description='',
author='uberspace.de',
author_email='hallo@uberspace.de',
url='https://github.com/uberspace/libestg9s4a',
long_description=open(path.abspath(path.dirname(__file__)) + '/README.rst').read(),
long_description_content_type='text/x-rst',
packages=[
'libestg9s4a',
],
install_requires=[
'python-dateutil',
],
extras_require={
'dev': [
# linting
'pylava==0.2.*',
'isort==4.3.*',
# testing
'pytest==3.8.*',
'pytest-cov',
'tox',
'codecov',
# releasing
'twine',
# documenting
'sphinx',
'sphinx-autobuild',
'sphinx-autodoc-typehints',
'sphinx_rtd_theme',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: Office/Business :: Financial',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
],
zip_safe=True,
)