-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 704 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='kural',
version='0.0.1',
description='A Library to make requests to GetThirukkural API',
long_description='This is a wrapper to GetThirukkural API',
keywords='kural api library tamil thirukkural',
url='http://github.com/sanspace/kural',
author='Santhosh Kumar Srinivasan',
author_email='san@sanspace.in',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: Tamil',
'Programming Language :: Python :: 2.7',
],
install_requires=['requests'],
)