-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.21 KB
/
setup.py
File metadata and controls
31 lines (28 loc) · 1.21 KB
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
import os
from setuptools import setup, find_packages
requires = ['pytz==2020.5',
'instagram-scraper==1.9.1',
'numpy==1.19.3',
'matplotlib==3.3.3',
'scipy==1.5.4',
'pandas==1.2.0',
'opencv-python-headless==4.4.0.46',
'pytest==6.2.1']
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(name='smart-nine',
version='0.0.9',
description=("smart-nine is a command-line application written in Python"
" that generates an Instagram user's top nine photograph collage. Use responsibly."),
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ulysseslizarraga/instagram_smart_nine',
author='Ulysses Lizarraga',
author_email='ulises.lizarraga@gmail.com',
license='Public domain',
packages=find_packages(exclude=['tests']),
install_requires=requires,
entry_points={'console_scripts': ['smart-nine=smart_nine.app:main'],},
zip_safe=False,
keywords=['instagram', 'top', 'nine', 'smart', 'photos', 'collage', 'year'])