-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.39 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
"""setup.py
locan installation: pip install -e .
python setup.py sdist
twine upload --repository pypitest dist/asyncsnmplib-x.x.x.tar.gz
twine upload --repository pypi dist/asyncsnmplib-x.x.x.tar.gz
"""
from setuptools import setup, find_packages
from asyncsnmplib.version import __version__ as version
try:
with open('README.md', 'r') as f:
long_description = f.read()
except IOError:
long_description = ''
install_requires = [
'pycryptodome'
]
setup(
name='asyncsnmplib',
packages=find_packages(),
version=version,
description='Library for async SNMP queries',
long_description=long_description,
long_description_content_type='text/markdown',
author='Cesbit',
author_email='[email protected]',
url='https://github.com/cesbit/asyncsnmplib',
download_url=(
'https://github.com/cesbit/'
'asyncsnmplib/tarball/v{}'.format(version)),
keywords=['snmp', 'async'],
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',
],
)