-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (31 loc) · 981 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 setuptools import setup
VERSION = "0.2.0"
install_requires = [
"nose",
"pyannotate",
]
with open('README.md') as fobj:
long_description = fobj.read().strip()
if __name__ == "__main__":
setup(
name="nose-pyannotate",
version=VERSION,
author="Kai Xia",
author_email="xiaket@gmail.com",
url="https://github.com/xiaket/nose-pyannotate",
description="Pyannotate plugin for nose",
long_description=long_description,
py_modules=['nose_pyannotate'],
install_requires=install_requires,
entry_points={
'nose.plugins': [
'pyannotateplug = nose_pyannotate:NoseAnnotatorPlugin'
]
},
keywords=['nose', 'nosetest', 'pyannotate'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Testing :: Unit',
],
)