-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (27 loc) · 894 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
from setuptools import setup, find_packages, Extension
import os, sys
pkgs = find_packages('testvmprof', exclude=('tests.*'))
setup(
name='vmprof-integration',
author='vmprof team',
author_email='[email protected]',
version="0.0.1.dev0",
packages=pkgs,
description="VMProf's integration tests",
long_description='See https://vmprof.readthedocs.org/',
url='https://github.com/vmprof/vmprof-integration',
install_requires=[
'requests',
'selenium'
],
tests_require=['pytest'],
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
zip_safe=False,
include_package_data=True,
)