forked from andrewferlitsch/Gap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (59 loc) · 2.03 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
64
65
66
67
""" setup Gap-ML
Copyright, 2018(c), Andrew Ferlitsch
Autor: David Molina @virtualdvid
"""
from setuptools import setup, find_packages
#setup components
with open('README.md', 'r', encoding="utf-8") as f:
long_description = f.read()
install_requires = [
'beautifulsoup4==4.6.3',
'numpy==1.15.1',
'h5py==2.8.0',
'imutils==0.5.1',
'Unidecode==1.0.22',
'nltk==3.3',
'pandas==0.23.4',
'requests==2.19.1',
'opencv-python==3.4.3.18',
'Pillow==5.2.0',
'matplotlib==2.2.3']
tests_require=[
'pytest',
'pytest-cov']
package_data={'gapml':['tools/*', 'train/*']}
project_urls={"Documentation": "https://andrewferlitsch.github.io/Gap/",
"Source Code": "https://github.com/andrewferlitsch/Gap"}
#https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Text Processing',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7']
setup(
name='gapml',
version='0.9.4',
description='NLP and CV Data Engineering Framework',
author='Andrew Ferlitsch',
author_email='[email protected]',
license='Apache 2.0',
url='https://github.com/andrewferlitsch/Gap',
project_urls=project_urls,
long_description=long_description,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=install_requires,
tests_require=tests_require,
package_data=package_data,
classifiers=classifiers
)