-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 739 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
with open('README.txt') as f:
long_description = f.read()
setup(name='ipernity_api_py3',
version='0.14',
description='Python Ipernity API',
long_description=long_description,
author='rcw-2',
author_email='github@rcw-2.de',
url='https://github.com/rcw-2/python-ipernity-api-py3',
license='Apache 2.0',
packages=['ipernity_api'],
platforms=['any'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities',
],
python_requires = '>=3.8',
install_requires = ['requests'])