-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (42 loc) · 1.7 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
import re
import io
from setuptools import setup, find_packages
open_as_utf = lambda x: io.open(x, encoding='utf-8')
(__version__, ) = re.findall("__version__.*\s*=\s*[']([^']+)[']", open('qddate/__init__.py').read())
readme = re.sub(r':members:.+|..\sautomodule::.+|:class:|:func:', '', open_as_utf('README.rst').read())
readme = re.sub(r'`Settings`_', '`Settings`', readme)
readme = re.sub(r'`Contributing`_', '`Contributing`', readme)
readme = open_as_utf('README.rst').read()
#history = re.sub(r':mod:|:class:|:func:', '', open_as_utf('HISTORY.rst').read())
setup(
name='qddate',
version=__version__,
description='Quick and dirty date parsing Python library to parse HTML dates really fast',
long_description=readme,# + '\n\n\n' + history,
author='Ivan Begtin',
author_email='[email protected]',
url='https://github.com/ivbeg/qddate',
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
install_requires=[
'dateparser>=1.1.0',
'pyparsing>=2.4.7'
],
python_requires='>=3.8',
license="BSD",
zip_safe=False,
keywords='date datetime',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
)