-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 729 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
from setuptools import find_packages
setup(
name='pygramedia',
version='0.0.2',
packages=['pygramed'],
license='MIT',
long_description='Unofficial API wrapper for Gramedia, the biggest bookstore in Indonesia and based on coroutine python 3.',
install_requires=['aiohttp==3.4.4'],
url='https://github.com/Keda87/PyGramedia',
author='Adiyat Mubarak',
author_email='adiyatmubarak@gmail.com',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Topic :: Utilities',
],
zip_safe=False,
)