-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
45 lines (41 loc) · 979 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# coding: utf-8
from setuptools import setup, find_packages
from seecode import __version__
setup(
name='seecode-audit',
version=__version__,
description='Distributed white box code scanning tool',
author='MyKings',
author_email='[email protected]',
url='[email protected]:seecode-audit/seecode-audit.git',
packages=find_packages(),
include_package_data=True,
install_requires=[
'django',
'mysql-python',
'requests',
'redis',
'pyyaml',
'netaddr',
'django-redis',
'django-cacheops',
],
extras_require={
'dev': [
'devpi>=2.1.0',
'prospector',
],
'test': [
'coverage>=3.7.1',
'nose>=1.3.6',
],
'docs': [
'Sphinx>=1.3.1',
],
'build': [
'devpi>=2.1.0',
],
},
test_suite='nose.collector',
zip_safe=False,
)