-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (31 loc) · 1.22 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='pylemonway',
version='0.1.11',
description='Python wrapper for Lemonway DIRECTKITJSON2',
long_description='Python wrapper for Lemonway DIRECTKITJSON2',
# The project's main homepage.
url='https://github.com/acarmisc/pylemonway',
# Author details
author='Andrea Carmisciano',
author_email='[email protected]',
license='APACHE 2.0',
classifiers=[
'Development Status :: 4 - Beta',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='REST lemonway requests crowdfunding',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['requests'],
)