|
2 | 2 | from setuptools import setup, find_packages
|
3 | 3 |
|
4 | 4 |
|
5 |
| -version = '0.7.0' |
| 5 | +version = '0.7.1' |
6 | 6 |
|
7 | 7 |
|
8 | 8 | def read(f):
|
9 | 9 | return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
|
10 | 10 |
|
11 | 11 |
|
12 | 12 | install_requires = [
|
| 13 | + 'sdiff @ git+ssh://[email protected]/KeepSafe/html-structure-diff.git#egg=sdiff', |
13 | 14 | 'aiohttp >=3, <3.4',
|
14 | 15 | 'Markdown',
|
15 | 16 | 'parse >=1, <2',
|
16 | 17 | 'beautifulsoup4 >=4, <5',
|
17 | 18 | 'lxml >=3',
|
18 | 19 | ]
|
19 | 20 |
|
| 21 | +tests_require = [ |
| 22 | + 'nose', |
| 23 | + 'flake8==3.6.0', |
| 24 | + 'coverage', |
| 25 | +] |
| 26 | + |
| 27 | +devtools_require = [ |
| 28 | + 'twine', |
| 29 | + 'build', |
| 30 | +] |
| 31 | + |
20 | 32 | setup(
|
21 | 33 | name='content-validator',
|
22 | 34 | version=version,
|
23 | 35 | description=('Content validator looks at text content and preforms different validation tasks'),
|
24 |
| - long_description='\n\n'.join((read('README.md'), read('CHANGELOG'))), |
25 | 36 | classifiers=[
|
26 | 37 | 'License :: OSI Approved :: BSD License', 'Intended Audience :: Developers', 'Programming Language :: Python'
|
27 | 38 | ],
|
28 | 39 | author='Keepsafe',
|
29 | 40 |
|
30 |
| - url='https://github.com/KeepSafe/google-play-cmd/', |
| 41 | + url='https://github.com/KeepSafe/content-validator/', |
31 | 42 | license='Apache',
|
32 | 43 | packages=find_packages(exclude=['tests']),
|
33 | 44 | package_data={},
|
34 | 45 | namespace_packages=[],
|
35 | 46 | install_requires=install_requires,
|
| 47 | + tests_require=tests_require, |
| 48 | + extras_require={ |
| 49 | + 'tests': tests_require, |
| 50 | + 'devtools': devtools_require, |
| 51 | + }, |
36 | 52 | entry_points={'console_scripts': ['content-validator = validator:main']},
|
37 | 53 | include_package_data=False)
|
0 commit comments