-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (40 loc) · 1.36 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
"""
Copyright (C) EvoCount GmbH - All Rights Reserved
Unauthorized copying of this file, via any medium is strictly prohibited
Proprietary and confidential.
"""
from codecs import open
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='tcp-connectors',
version='0.1.5',
description='Connectors for connecting to any TCP-based service',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/evocount/tcp-connectors',
download_url='https://github.com/evocount/tcp-connectors/archive/v0.1.5.tar.gz',
author='EvoCount GmbH',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
"gmqtt",
"aiohttp",
"cchardet",
"aiodns",
],
# see: https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
python_requires='>=3.6',
)