-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (41 loc) · 1.38 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
import setuptools
from pathlib import Path
setuptools.setup(
name="optracker",
version="1.3.6",
description=('Scrapes medias, likes, followers from social media. Organize them in a database for more deeper analyze.'),
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
package_data={'optracker': ['data/face_models/*.dat']},
license="MIT",
maintainer="suxSx",
author='suxSx',
author_email='[email protected]',
keywords='scraper media social network mapper tracker instagram scrape like follow analyze',
url='https://github.com/suxSx/openSource-tracker',
entry_points={
'console_scripts': [
'optracker = optracker.optracker:run',
],
},
install_requires=[
'python-slugify==3.0.2',
'unicodecsv==0.14.1',
'mysql-connector-python==8.0.18',
'cmake',
'Pillow',
'dlib>=19.7'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Education :: Testing',
"License :: OSI Approved :: MIT License"
],
)