-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
51 lines (46 loc) · 1.44 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
44
45
46
47
48
49
50
51
from setuptools import setup
from html5validator import __version__
setup(
name='html5validator',
version=__version__,
packages=['html5validator', 'html5validator.tests', 'vnujar'],
license='MIT',
description='Validate HTML5 files.',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
author='Sven Kreiss',
author_email='me@svenkreiss.com',
url='https://github.com/svenkreiss/html5validator',
include_package_data=True,
zip_safe=False,
python_reqires=">=3.6",
install_requires=[
'PyYAML',
],
extras_require={
'tests': [
'hacking',
'pytest',
],
},
entry_points={
'console_scripts': [
'html5validator = html5validator.cli:main',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
'Programming Language :: Python :: Implementation :: PyPy',
]
)