Skip to content

Commit f595ebb

Browse files
committedMar 3, 2018
setup.py: pypi package
Use pip install python-taint Works only on python3.6 Closes: #3
1 parent cebd654 commit f595ebb

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed
 

‎setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.rst

‎setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
long_description = """"""
44

55
setup(
6-
name='pyt',
7-
version='1.0.0a20 ',
6+
name='python-taint',
7+
version='0.1',
88
description='Find security vulnerabilities in Python web applications'
99
' using static analysis.',
1010
long_description=long_description,
1111
url='https://github.com/python-security/pyt',
1212
author='python-security',
1313
author_email='mr.thalmann@gmail.com',
14+
download_url='https://github.com/python-security/pyt/archive/0.1.tar.gz',
1415
license='GPLv2',
1516
classifiers=[
1617
'Development Status :: 3 - Alpha',
@@ -23,7 +24,7 @@
2324
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
2425
'Programming Language :: Python :: 3.5'
2526
],
26-
keywords='security vulnerability web flask django pyt static analysis',
27+
keywords=['security', 'vulnerability', 'web', 'flask', 'django', 'pyt', 'static', 'analysis'],
2728
packages=[
2829
'pyt'
2930
],

0 commit comments

Comments
 (0)
Please sign in to comment.