Skip to content

Commit

Permalink
Add setup.py (to install from pip)
Browse files Browse the repository at this point in the history
  • Loading branch information
inomoz committed Mar 30, 2017
1 parent cd0c00b commit 8bd6c59
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

import os

from setuptools import setup


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


setup(
name='namesilo',
version='0.1.4',
url='http://github.com/kolanos/namesilo',
license='MIT',
author='Bemmu Sepponen',
author_email='me@bemmu.com',
description='Namecheap API client in Python',
py_modules=['PyNamecheap'],
platforms='any',
install_requires=['requests'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)

0 comments on commit 8bd6c59

Please sign in to comment.