-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (43 loc) · 1.54 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
__author__ = 'Magnus Knutas'
VERSION = '2.2.0'
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
setup(
name='py-melissa-climate',
version=VERSION,
description='Api wrapper for Melissa Climate http://seemelissa.com',
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md',
url='https://github.com/kennedyshead/py-melissa-climate',
download_url=
'https://github.com/kennedyshead/py-melissa-climate/archive/%s.tar.gz' % VERSION,
author=__author__,
author_email='[email protected]',
license='MIT license',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='Api Melissa development wrapper',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['requests', 'requests-futures', 'aiohttp'],
test_suite='tests',
extras_require={
'dev': ['check-manifest'],
'test': ['coverage', 'mock'],
},
)