|
3 | 3 | # This file is part of Viper - https://github.com/viper-framework/viper |
4 | 4 | # See the file 'LICENSE' for copying permission. |
5 | 5 |
|
6 | | -from setuptools import setup, find_packages |
7 | 6 | from viper.common.version import __version__ |
8 | 7 |
|
| 8 | +# Always prefer setuptools over distutils |
| 9 | +from setuptools import setup, find_packages |
| 10 | + |
| 11 | +description = "Binary Analysis & Management Framework" |
| 12 | + |
9 | 13 | setup( |
10 | 14 | name='viper', |
11 | 15 | version=__version__, |
12 | 16 | author='Claudio Guarnieri', |
13 | 17 | author_email='nex@nex.sx', |
14 | | - description="Binary Analysis & Management Framework", |
| 18 | + description=description, |
| 19 | + long_description=description, |
15 | 20 | url='http://viper.li', |
16 | | - license='BSD 3-Clause', |
17 | 21 |
|
18 | 22 | scripts=['viper-cli', 'viper-api', 'viper-web', 'viper-update'], |
19 | | - packages=find_packages(), |
| 23 | + packages=find_packages(exclude=['tests', 'tests.*']), |
20 | 24 | setup_requires=['pytest-runner'], |
21 | 25 | tests_require=['pytest'], |
| 26 | + |
| 27 | + # BSD 3-Clause License: |
| 28 | + # - http://choosealicense.com/licenses/bsd-3-clause |
| 29 | + # - http://opensource.org/licenses/BSD-3-Clause |
| 30 | + license='BSD 3-Clause', |
| 31 | + |
| 32 | + # See https://pypi.python.org/pypi?%3Aaction=list_classifiers |
| 33 | + classifiers=[ |
| 34 | + 'Topic :: Security', |
| 35 | + |
| 36 | + 'License :: OSI Approved :: BSD License', |
| 37 | + |
| 38 | + 'Programming Language :: Python :: 2', |
| 39 | + 'Programming Language :: Python :: 2.7', |
| 40 | + 'Programming Language :: Python :: 3', |
| 41 | + 'Programming Language :: Python :: 3.4', |
| 42 | + 'Programming Language :: Python :: 3.5', |
| 43 | + 'Programming Language :: Python :: 3.6', |
| 44 | + |
| 45 | + 'Operating System :: POSIX :: Linux', |
| 46 | + ], |
| 47 | + |
| 48 | + keywords='binary analysis management malware research', |
22 | 49 | ) |
0 commit comments