This repository was archived by the owner on Dec 9, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +77
-0
lines changed
Expand file tree Collapse file tree 2 files changed +77
-0
lines changed Original file line number Diff line number Diff line change 1+ [metadata]
2+ description-file = README.md
Original file line number Diff line number Diff line change 1+ from setuptools import setup
2+ from setuptools import find_packages
3+
4+ setup (
5+ name = 'mdparse' ,
6+ packages = find_packages (),
7+ version = '0.10' ,
8+ description = 'Parsing markdown files for deep learning.' ,
9+ author = 'Hamel Husain' ,
10+ author_email = 'hamel.husain@gmail.com' ,
11+ url = 'https://github.com/machine-learning-apps/mdparse' ,
12+ license = 'MIT' ,
13+ install_requires = ['attrs>=19.1.0' ,
14+ 'backcall>=0.1.0' ,
15+ 'beautifulsoup4>=4.7.1' ,
16+ 'blis>=0.2.4' ,
17+ 'bs4>=0.0.1' ,
18+ 'cachetools>=3.1.1' ,
19+ 'chardet>=3.0.4' ,
20+ 'cymem>=2.0.2' ,
21+ 'cytoolz>=0.9.0.1' ,
22+ 'decorator>=4.4.0' ,
23+ 'certifi>=2019.3.9' ,
24+ 'html5lib>=1.0.1' ,
25+ 'idna>=2.8' ,
26+ 'jedi>=0.13.3' ,
27+ 'joblib>=0.13.2' ,
28+ 'jsonschema>=3.0.1' ,
29+ 'mistune>=0.8.4' ,
30+ 'murmurhash>=1.0.2' ,
31+ 'networkx>=2.3' ,
32+ 'numpy>=1.16.4' ,
33+ 'parso>=0.4.0' ,
34+ 'pickleshare>=0.7.5' ,
35+ 'plac>=0.9.6' ,
36+ 'preshed>=2.0.1' ,
37+ 'prompt-toolkit>=2.0.9' ,
38+ 'ptyprocess>=0.6.0' ,
39+ 'pyemd>=0.5.1' ,
40+ 'pygments>=2.4.2' ,
41+ 'pyphen>=0.9.5' ,
42+ 'pyrsistent>=0.15.2' ,
43+ 'python-dateutil>=2.8.0' ,
44+ 'python-levenshtein>=0.12.0' ,
45+ 'regex>=2019.6.8' ,
46+ 'requests>=2.22.0' ,
47+ 'six>=1.12.0' ,
48+ 'soupsieve>=1.9.1' ,
49+ 'spacy>=2.1.4' ,
50+ 'srsly>=0.0.7' ,
51+ 'textacy>=0.7.0' ,
52+ 'thinc>=7.0.4' ,
53+ 'timeout-decorator>=0.4.1' ,
54+ 'toolz>=0.9.0' ,
55+ 'tornado>=6.0.2' ,
56+ 'tqdm>=4.32.1' ,
57+ 'traitlets>=4.3.2' ,
58+ 'urllib3>=1.24.3' ,
59+ 'wasabi>=0.2.2' ,
60+ 'wcwidth>=0.1.7' ,
61+ 'webencodings>=0.5.1' ],
62+ extras_require = {
63+ 'tests' : ['pytest' ,
64+ 'pytest-pep8' ,
65+ 'pytest-xdist' ,
66+ 'pytest-cov' ],
67+ },
68+ download_url = 'https://github.com/machine-learning-apps/mdparse/archive/0.10.zip' ,
69+ classifiers = [
70+ 'Development Status :: 1 - Planning' ,
71+ 'Programming Language :: Python :: 3.7' ,
72+ 'Topic :: Software Development :: Libraries' ,
73+ 'Topic :: Software Development :: Libraries :: Python Modules'
74+ ]
75+ )
You can’t perform that action at this time.
0 commit comments