-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
26 lines (25 loc) · 1013 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
26
import setuptools
setuptools.setup(
name="hardcodes",
version="0.1.0-beta",
author="Somdev Sangwan",
author_email="s0md3v@gmail.com",
keywords='hardcodes, lexer, syntax, security',
description="Extracted hardcoded strings from source code",
url="https://github.com/s0md3v/hardcodes",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)