-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (29 loc) · 1004 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
from os import path
from setuptools import setup, find_packages
from nose_launchable.version import __version__
def _read(file):
return open(path.join(path.dirname(__file__), file)).read()
def _requirements(file):
return open(file).read().splitlines()
setup(
name='nose-launchable',
version=__version__,
url='https://github.com/launchableinc/nose-launchable',
author='Launchable team',
author_email=' info@launchableinc.com',
description='A nose plugin to interact with Launchable API',
long_description=_read("README.rst"),
packages=find_packages(),
install_requires=_requirements('requirements.txt'),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
entry_points={
'nose.plugins.0.10': [
'nose_launchable = nose_launchable:Launchable'
],
},
)