forked from rdegges/python-ipify
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
86 lines (72 loc) · 2.88 KB
/
setup.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
"""
setup.py
~~~~~~~~
Packaging information and tools.
"""
from subprocess import call
from sys import exit
from setuptools import Command, setup
import ipify2.__info__ as package_info
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", 'r') as fh:
requirements = fh.read().splitlines()
class TestCommand(Command):
"""
The ``python setup.py test`` command line invocation is powered by this
helper class.
This class will run ``py.test`` behind the scenes and handle all command
line arguments for ``py.test`` as well.
"""
description = 'run all tests'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
"""Run the test suite."""
exit(call(['py.test', '--cov-report', 'term-missing', '--cov', 'ipify2']))
setup(
name=package_info.__title__, # How you named your package folder (MyLib)
packages=[package_info.__title__], # Choose the same as "name"
version=package_info.__version__, # Start with a small number and increase it with every change you make
license=package_info.__license__,
description="Get IP address information via ipify.org", # Give a short description about your library
long_description=long_description,
long_description_content_type="text/markdown",
author=package_info.__author__, # Type in your name
author_email=package_info.__author_email__, # Type in your E-Mail
url=f'https://github.com/nwithan8/{package_info.__title__}',
download_url=f'https://github.com/nwithan8/{package_info.__title__}/archive/{package_info.__version__}.tar.gz',
# Package dependencies:
install_requires=requirements,
tests_require=requirements,
# Test harness:
cmdclass={
'test': TestCommand,
},
keywords=['Python', 'API', 'client', 'ipify', 'ipify2', 'ip', 'address', 'public', 'ipv4', 'ipv6', 'service'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
python_requires='>=3.0'
)