-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (27 loc) · 985 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
setup(
name='jstestnetlib',
version='0.3',
description="""Client library to execute JavaScript tests against a JS TestNet
server.""",
long_description="""""",
author='Kumar McMillan',
author_email='[email protected]',
license="Apache License",
packages=find_packages(exclude=['ez_setup']),
install_requires=[r for r in open('requirements.txt')
if r.strip() and not r.startswith('#')],
url='https://github.com/kumar303/jstestnetlib',
include_package_data=True,
entry_points="""
[nose.plugins.0.10]
jstests = jstestnetlib.noseplugins:JSTests
django_serv = jstestnetlib.noseplugins:DjangoServPlugin
""",
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Testing'
],
)