This repository has been archived by the owner on Jan 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·43 lines (38 loc) · 1.91 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
#!/usr/bin/env python
from setuptools import setup, find_packages
# long description with latest release notes
readme = open('README.rst').read()
news = open('NEWS.rst').read()
long_description = (readme + "\n\nLatest release notes\n====================\n"
+ '\n'.join(news.split('\n\n\n', 1)[0].splitlines()[2:]))
# the actual setup
setup(name='python-bond', version='1.4',
description='transparent remote/recursive evaluation between Python and other languages',
author="Yuri D'Elia",
author_email="wavexx@thregr.org",
license="GPL2",
long_description=long_description,
url="http://www.thregr.org/~wavexx/software/python-bond/",
keywords="javascript php perl python",
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: JavaScript',
'Programming Language :: PHP',
'Programming Language :: Perl',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Topic :: Software Development :: Interpreters',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development'],
packages=find_packages(exclude=['tests']),
include_package_data=True,
exclude_package_data = {'': ['*.txt', '*.rst']},
install_requires=['pexpect', 'setuptools'],
setup_requires=['nose', 'setuptools_git'],
test_suite='nose.collector')