-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (24 loc) · 835 Bytes
/
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
from setuptools import setup
setup(
name='esobrute',
version='0.1',
description='An esoteric programming languages brute forcer powered by tio.run',
# long_description=long_description,
# long_description_content_type='text/markdown',
author='Alan Chang',
author_email='[email protected]',
python_requires='>=2.7, <3',
url='https://github.com/tcode2k16/esobrute',
packages=['esobrute'],
scripts=['scripts/esobrute'],
install_requires=['requests>=2.20.1', 'termcolor>=1.1.0', 'Click>=7.0'],
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Security',
'Environment :: Console',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers'
]
)