-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
31 lines (28 loc) · 986 Bytes
/
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
import sys
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(
name='sexpdata',
version='1.0.3',
py_modules=['sexpdata'],
author='Joshua D. Boyd, Takafumi Arakaki',
author_email='jdboyd@jdboyd.net',
url='https://github.com/jd-boyd/sexpdata',
license='BSD License',
description='S-expression parser for Python',
long_description=long_description,
keywords='s-expression, lisp, parser',
classifiers=[
"Development Status :: 3 - Alpha",
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
"Programming Language :: Lisp",
"Programming Language :: Emacs-Lisp",
# see: http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
)