-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (32 loc) · 1.19 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
# Copyright (C) 2011 Alejandro Blanco <[email protected]>
import os
from setuptools import setup
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name="pyjslint",
version='0.3.5dev',
author="Alejandro Blanco",
author_email="[email protected]",
description="JSLint wrapper",
long_description=read('README.rst'),
license="BSD-3",
classifiers=["Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance"],
keywords="jslint javascript lint hook qa",
py_modules=['pyjslint'],
url='https://github.com/Yaco-Sistemas/pyjslint/',
zip_safe=False,
entry_points={
'console_scripts': [
'pyjslint = pyjslint:main',
]},
)