-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
53 lines (50 loc) · 1.41 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def get_long_description():
import os, codecs
fpath_here = os.path.dirname(__file__)
fpath_readme = os.path.join(fpath_here, 'README.rst')
return codecs.open(fpath_readme, 'r', 'utf8').read()
setup(
name="anchorman",
version="0.5.3",
author="matthias rebel",
author_email="[email protected]",
url="https://github.com/rebeling/anchorman",
description=(
"Anchorman finds terms in text and replaces them "
"with another representation."
),
long_description=get_long_description(),
license='Apache 2.0',
keywords=[
"hypertext",
"markup",
"linking",
"hyperlinks",
"seo"
],
packages=["anchorman"],
# pytest_plugins=['pytest_profiling'],
install_requires=[
"beautifulsoup4==4.4.1",
"html5lib==1.0b8",
"lxml",
"pytest-cov",
"pytest",
"pyyaml"
],
tests_require=['pytest==2.8.3', 'pytest-cov==2.2.0'],
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Text Processing :: Markup'
)
)