-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
53 lines (44 loc) · 1.3 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
52
53
import os
from setuptools import setup, find_packages
version = '0.7.2'
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
install_requires = [
'sdiff @ git+https://github.com/KeepSafe/[email protected]#egg=sdiff',
'aiohttp >=3, <3.4',
'Markdown',
'parse <= 1.8.2',
'beautifulsoup4 >=4, <5',
'lxml >=3',
]
tests_require = [
'nose',
'flake8==3.6.0',
'coverage',
]
devtools_require = [
'twine',
'build',
]
setup(
name='content-validator',
version=version,
description=('Content validator looks at text content and preforms different validation tasks'),
classifiers=[
'License :: OSI Approved :: BSD License', 'Intended Audience :: Developers', 'Programming Language :: Python'
],
author='Keepsafe',
author_email='[email protected]',
url='https://github.com/KeepSafe/content-validator/',
license='Apache',
packages=find_packages(exclude=['tests']),
package_data={},
namespace_packages=[],
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'tests': tests_require,
'devtools': devtools_require,
},
entry_points={'console_scripts': ['content-validator = validator:main']},
include_package_data=False)