-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
41 lines (35 loc) · 1.21 KB
/
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
from os import path
from os.path import join, abspath, dirname
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
readme = f.read()
with open(join(here, 'requirements.txt')) as f:
required = f.read().splitlines()
with open(join(abspath(dirname(__file__)), "VERSION"), "r") as v:
VERSION = v.read().replace("\n", "")
setup(
name='waf_benchmark',
version=VERSION,
packages=find_packages(),
long_description=readme,
install_requires=required,
include_package_data=True,
url='https://github.com/bbva/waf-benchmark',
license='BSD',
author='Daniel Garcia (cr0hn)',
description='A benchmarking test for WAF systems',
entry_points={'console_scripts': [
'waf-bench = waf_benchmark.__main__:main',
]},
classifiers=[
'Environment :: Console',
'Intended Audience :: System Administrators',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
],
)