mirror of
https://github.com/dirkjanm/ROADtools
synced 2026-06-08 13:48:32 +00:00
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
from setuptools import setup
|
|
setup(name='roadtx',
|
|
version='1.22.0',
|
|
description='ROADtools Token eXchange',
|
|
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=['roadtools.roadtx'],
|
|
package_data={'roadtools.roadtx': ['firstpartyscopes.json']},
|
|
install_requires=[
|
|
'roadlib>=1.7',
|
|
'requests',
|
|
'selenium',
|
|
'selenium-wire-roadtx>=5.2.4',
|
|
'pyotp',
|
|
'pycryptodomex',
|
|
'signxml>3',
|
|
'setuptools'
|
|
],
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
entry_points={
|
|
'console_scripts': ['roadtx=roadtools.roadtx.main:main',]
|
|
}
|
|
)
|