forked from python-security/pyt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.29 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
from setuptools import find_packages
from setuptools import setup
VERSION = '0.42'
setup(
name='python-taint',
packages=find_packages(exclude=(['tests*'])),
version=VERSION,
include_package_data=True,
description='Find security vulnerabilities in Python web applications'
' using static analysis.',
long_description="Check out PyT on `GitHub <https://github.com/python-security/pyt>`_!",
url='https://github.com/python-security/pyt',
author='python-security',
author_email='[email protected]',
download_url='https://github.com/python-security/pyt/archive/{}.tar.gz'.format(VERSION),
license='GPLv2',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Security',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3.6'
],
keywords=['security', 'vulnerability', 'web', 'flask', 'django', 'static-analysis', 'program-analysis'],
install_requires=[],
entry_points={
'console_scripts': [
'pyt = pyt.__main__:main'
]
}
)