forked from noseapp/noseapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 1.23 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
41
42
43
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
__version__ = '1.1.4'
if __name__ == '__main__':
setup(
name='noseapp',
version=__version__,
url='https://github.com/trifonovmixail/noseapp',
packages=find_packages(),
author='Mikhail Trifonov',
author_email='[email protected]',
license='GNU LGPL',
description='Framework for test development',
keywords='test unittest framework nose application',
long_description=open('README.rst').read(),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'nose==1.3.4',
],
entry_points={
'console_scripts':
[
'noseapp-manage = noseapp.manage:run',
],
},
test_suite='tests',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Testing',
],
)