-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 1.16 KB
/
setup.py
File metadata and controls
35 lines (34 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
setup(name='ncssl-api-client',
version='1.0.3',
description='Command line interface for Namecheap SSL API',
url='https://github.com/antonku/ncssl_api_client',
author='Anton Kudinov',
author_email='anton.ku.nc@gmail.com',
license='MIT',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[
'future',
'enum34',
'requests',
'mock',
'xmltodict',
'pyyaml',
'coloredlogs',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
],
entry_points={
'console_scripts': ['ncsslapi=ncssl_api_client.__main__:main_cli_wrapper'],
},
test_suite='tests',
include_package_data=True,
zip_safe=False)