-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
47 lines (44 loc) · 1.71 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
# coding=utf-8
import io
from setuptools import setup
setup(
name='ares_util',
version='0.3.0',
description='A tool for information system allowing a retrieval '
'of information on economic entities registered in '
'the Czech Republic (ARES - Access to Registers of Economic Subjects / Entities).',
long_description=io.open('README.rst', 'r', encoding='utf-8').read(),
url='https://github.com/illagrenan/ares_util',
license='MIT',
author='Vasek Dohnal',
author_email='[email protected]',
packages=['ares_util'],
install_requires=['requests'],
include_package_data=True,
zip_safe=True,
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Framework :: Django',
'Framework :: Django :: 4',
'Framework :: Django :: 5.0',
],
test_suite='tests',
tests_require=['responses']
)