-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (46 loc) · 1.6 KB
/
setup.py
File metadata and controls
48 lines (46 loc) · 1.6 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
setup(
name='instagram-basic-display',
version='1.2.0',
packages=find_packages(exclude=['tests', 'tests.*']),
package_data={'instagram_basic_display': ['py.typed']},
install_requires=[
'requests'
],
url='https://github.com/Salamek/instagram-basic-display-python',
license='LGPL-3.0 ',
author='Adam Schubert',
author_email='adam.schubert@sg1-game.net',
description='A simple Python library for accessing the Instagram Basic Display API',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
test_suite='tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development',
],
python_requires='>=3.4',
setup_requires=[
'pytest-runner'
],
tests_require=[
'pytest',
'pylint',
'tox',
'pytest-cov'
],
project_urls={
'Release notes': 'https://github.com/Salamek/instagram-basic-display-python/releases',
},
)