Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
David Amrani Hernández committed Mar 28, 2018
1 parent 2d74eb0 commit ccc8614
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1
1.0.0
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,23 @@ def read_file(filename):


package_name = 'atomshields'
version = read_file('VERSION').strip()

setup(
name = package_name,
version = read_file('VERSION').strip(),
version = version,
install_requires=read_file('requirements.txt').splitlines(),
packages = find_packages(),
author = 'ElevenPaths',
description = "Framework de pruebas de seguridad en repositorios de código fuente. Dispone de un sistema flexible para la realización de pruebas de seguridad y comunicación de resultados.",
description = "Security testing framework for repositories and source code.",
long_description=open('README.rst').read(),
author_email = 'diego.fernandez@11paths.com, david.amrani@11paths.com',
url = 'https://github.com/ElevenPaths/AtomShields',
project_urls={
"Documentation": "https://atomshields.readthedocs.io",
"Source Code": "https://github.com/ElevenPaths/AtomShields",
},
download_url = 'https://github.com/ElevenPaths/AtomShields/tarball/0.1',
download_url = 'https://github.com/ElevenPaths/AtomShields/tarball/' + version,
keywords = 'security, source code, analysis',
license='Apache 2.0',
classifiers=[
Expand All @@ -70,5 +71,3 @@ def read_file(filename):
# Setup AtomShields
from atomshields.scanner import AtomShieldsScanner
AtomShieldsScanner.setup()


0 comments on commit ccc8614

Please sign in to comment.