File: setup.py

package info (click to toggle)
python-sexpdata 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 112 kB
  • sloc: python: 361; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 986 bytes parent folder | download
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.2',
    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
    ],
)