forked from racerxdl/instapy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (48 loc) · 1.72 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
import os
import codecs
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
"""
Build an absolute path from *parts* and and return the contents of the
resulting file. Assume UTF-8 encoding.
"""
with codecs.open(os.path.join(here, *parts), "rb", "utf-8") as f:
return f.read()
setup(
name='instapy-cli',
version='0.0.6',
description='Python library and cli used to upload photo on Instagram. W/o a phone!',
long_description=read('README.rst'),
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',
],
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', 'instapy_cli/api'],
install_requires=[ # external packages as dependencies
'requests>=2',
],
entry_points={
'console_scripts': [
'instapy=instapy_cli.__main__:main'
]
},
)