-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
46 lines (44 loc) · 1.63 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
from sys import version_info
import os
# Prevent spurious errors during `python setup.py test` in 2.6, a la
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html:
try:
import multiprocessing
# silence pyflakes
assert multiprocessing
except ImportError:
pass
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='erl_terms',
version='0.1.5',
description='Erlang term read library',
long_description='Erlang term library implemented in pure Python',
author='Machine Zone',
author_email='info@machinezone.com',
license='proprietary',
packages=find_packages(exclude=['ez_setup']),
install_requires=['parsimonious==0.7.0'],
tests_require=['nose'],
test_suite='nose.collector',
url='https://github.com/machinezone/python_etf',
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Development Status :: 2 - Pre-Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing :: General'],
keywords=['parse', 'parser', 'erlang', 'peg', 'grammar', 'language'],
use_2to3=version_info >= (3,)
)