mirror of
https://github.com/dirkjanm/ROADtools
synced 2026-06-08 13:48:32 +00:00
25 lines
957 B
Python
25 lines
957 B
Python
from setuptools import setup, find_namespace_packages
|
|
setup(name='roadlib',
|
|
version='1.7.0',
|
|
description='ROADtools common components library',
|
|
author='Dirk-jan Mollema',
|
|
author_email='dirkjan@outsidersecurity.nl',
|
|
url='https://github.com/dirkjanm/ROADtools/',
|
|
license='MIT',
|
|
classifiers=[
|
|
'Intended Audience :: Information Technology',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.9',
|
|
'Programming Language :: Python :: 3.10',
|
|
'Programming Language :: Python :: 3.11',
|
|
'Programming Language :: Python :: 3.12',
|
|
'Programming Language :: Python :: 3.13',
|
|
],
|
|
packages=find_namespace_packages(include=['roadtools.*']),
|
|
install_requires=['requests', 'cryptography', 'sqlalchemy>=1.4', 'pyjwt>=2.0', 'cbor2'],
|
|
extras_require={
|
|
"async": ["aiohttp"],
|
|
},
|
|
zip_safe=False
|
|
)
|