Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
50 lines (46 loc) · 1.52 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (46 loc) · 1.52 KB
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
"""setup.py
locan installation: pip install -e .
python setup.py sdist
twine upload --repository pypitest dist/pylibagent-x.x.x.tar.gz
twine upload --repository pypi dist/pylibagent-x.x.x.tar.gz
"""
fromsetuptoolsimportsetup, find_packages
frompylibagent.versionimport__version__asversion
try:
withopen('README.md', 'r') asf:
long_description=f.read()
exceptIOError:
long_description=''
install_requires= [
'aiohttp',
'colorlog',
'msgpack',
'setproctitle',
]
setup(
name='pylibagent',
packages=find_packages(),
version=version,
description='Library for building InfraSonar agents',
long_description=long_description,
long_description_content_type='text/markdown',
author='Cesbit',
author_email='info@cesbit.com',
url='https://github.com/infrasonar/python-libagent',
download_url=(
'https://github.com/infrasonar/'
'python-libagent/tarball/v{}'.format(version)),
keywords=['monitoring', 'infrasonar', 'agent'],
install_requires=install_requires,
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic'
],
)