Files
dirkjanm-ROADtools/roadlib/setup.py
T
Dirk-jan Mollema b40834a1b8 roadlib version bump
2022-11-23 13:44:35 +01:00

23 lines
911 B
Python

from setuptools import setup, find_namespace_packages
setup(name='roadlib',
version='0.15.1',
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',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
packages=find_namespace_packages(include=['roadtools.*']),
install_requires=['adal', 'sqlalchemy', 'pyjwt>=2.0'],
zip_safe=False
)