-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
82 lines (66 loc) · 2.45 KB
/
Copy pathsetup.py
File metadata and controls
82 lines (66 loc) · 2.45 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
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
# This documentation is in the reStructuredText format. More details about writing
# rst docs can be found here:
# http://docutils.sourceforge.net/docs/user/rst/quickref.html
#
# Instructions for packaging and distributing python packages can be found here:
# Doc: https://packaging.python.org/distributing/
# Sample: https://github.com/pypa/sampleproject/blob/master/setup.py
"""
Overview
========
fnexchange-sample-plugin is a plugin for the fnExchange API router service.
This plugin provides interfaces to do X, Y, Z.
The Greetings plugin provides greeting strings given user names and their locales.
More details about this plugin can be found `here <http://github.com/dnif/fnExchange-sample-plugin>`_
More Information
================
fnExchange installation and usage instructions can be found on the project's
`GitHub page <http://github.com/dnif/fnExchange>`_
fnExchange sample plugin project and development instructions can be found at
`fnExchange-sample-plugin github <http://github.com/dnif/fnExchange-sample-plugin>`_
"""
from setuptools import setup, find_packages
setup(
# name of package on PyPi
name='fnexchange-sample-plugin',
version='1.0.1',
# URL to your repo (if open source)
# url='REPO_URL',
license='Apache',
# your name
author='Bhumil Haria',
# your email here
author_email='bhumilharia@gmail.com',
description='A sample fnExchange plugin',
long_description=__doc__,
keywords='fnexchange plugin',
# if cross-platform
platforms='any',
# add your dependencies here
install_requires=[
'fnexchange',
'six==1.10.0',
'tornado==4.4.2',
],
py_modules=['greetings'],
include_package_data=True,
zip_safe=False,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers for a full list
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)