-
Notifications
You must be signed in to change notification settings - Fork 98
/
setup.py
57 lines (51 loc) · 1.99 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
from os import path
from io import open
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='instapy-cli',
version='0.0.12',
description='Python library and cli used to upload photo on Instagram. W/o a phone!',
long_description=long_description,
# This field corresponds to the "Description-Content-Type" metadata field:
# https://packaging.python.org/specifications/core-metadata/#description-content-type-optional
long_description_content_type='text/markdown',
classifiers=[
# How mature is this project?
'Development Status :: 5 - Production/Stable',
# For who your project is intended for and its usage
'Intended Audience :: Developers',
'Environment :: Console',
# Project's License
'License :: OSI Approved :: MIT License',
# Python versions instapy-cli support here
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='instagram private upload api instapy instapy-cli instapycli',
author='Benedetto Abbenanti',
author_email='[email protected]',
url='https://github.com/b3nab/instapy-cli',
license='MIT',
packages=['instapy_cli'],
install_requires=[ # external packages as dependencies
'requests>=2',
'filetype==1.0.5',
'instagram_private_api==1.6.0',
'instagram_private_api_extensions==0.3.8',
],
entry_points={
'console_scripts': [
'instapy=instapy_cli.__main__:main'
]
},
)