-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
63 lines (52 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
63
"""nibbler-python - Better email parser
nibbler-python helps you parse for valid email addresses in Python projects
Example Usage
-------------
>>> from nibbler.parser import parse_email
# valid email
>>> parse_email('"much.more unusual"@example.com')
# invalid email
>>> parse_email('Abc.example.com')
Contribute
----------
This library is hosted on Github and you can contribute there:
`Github source <https://github.com/sendgridlabs/nibbler-python>`_.
"""
from setuptools import setup, find_packages
from nibbler import __version__
doc = __doc__.splitlines()
dev_requirements = [
# tests:
'nose',
'coverage',
# docs:
'Sphinx',
'sphinx_rtd_theme',
'sphinxcontrib-httpdomain',
'livereload'
]
setup(
name='nibbler-python',
description=doc[0],
long_description='\n'.join(doc[2:]),
version=__version__,
packages=find_packages(),
extras_require={
'dev': dev_requirements
},
author="Isaac Saldana",
maintainer="Kien Pham",
maintainer_email="[email protected]",
url="https://github.com/sendgridlabs/nibbler-python",
keywords='email parser esp sendgrid',
license="MIT",
platforms="Posix; MacOS X; Windows",
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7"],
)