forked from ping/instagram_private_api
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (34 loc) · 1.21 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
def readall(*args):
with open(path.join(here, *args), encoding='utf-8') as fp:
return fp.read()
with open('requirements.test.txt') as f:
test_deps = f.read().splitlines()
documentation = readall('README.md')
version = readall('instagram_private_api', 'version.txt')
setup(
name='instagram_private_api',
version=version,
author='Felix Breuer',
author_email='hi@felixbreuer.me',
license='MIT',
url='https://github.com/breuerfelix/instapi',
install_requires=[],
test_requires=test_deps,
keywords='instagram private api',
description='A client interface for the private Instagram API.',
long_description=documentation,
long_description_content_type='text/markdown',
packages=find_packages(),
python_requires=">=3",
package_data={'instagram_private_api': ["version.txt"]},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
],
)