-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 685 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='namecheapapi',
version='0.2.1',
description='Python Namecheap API wrapper',
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Environment :: Web Environment',
'Development Status :: 3 - Alpha',
],
author='Alex Sanchez',
author_email='alex@s1ck.org',
license='MIT',
packages=['namecheapapi'],
url='https://github.com/yonjuuni/namecheapapi',
keywords=['namecheap', 'domain', 'dns'],
include_package_data=True,
platforms=['any'],
)