-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (47 loc) · 1.53 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
"""setup.py
locan installation: pip install -e .
python setup.py sdist
twine upload --repository pypitest dist/libprobe-x.x.x.tar.gz
twine upload --repository pypi dist/libprobe-x.x.x.tar.gz
"""
from setuptools import setup, find_packages
from libprobe.version import __version__ as version
try:
with open('README.md', 'r') as f:
long_description = f.read()
except IOError:
long_description = ''
install_requires = [
'colorlog',
'msgpack',
'setproctitle',
'pyyaml',
'cryptography'
]
setup(
name='libprobe',
packages=find_packages(),
version=version,
description='Library for building InfraSonar probes',
long_description=long_description,
long_description_content_type='text/markdown',
author='Cesbit',
author_email='[email protected]',
url='https://github.com/infrasonar/python-libprobe',
download_url=(
'https://github.com/infrasonar/'
'python-libprobe/tarball/v{}'.format(version)),
keywords=['monitoring', 'infrasonar', 'probe'],
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'
],
)