|
1 | | -#!/usr/bin/env python |
| 1 | +''' |
| 2 | + nrepl-python-client |
| 3 | + ------------------- |
| 4 | +
|
| 5 | + A Python client for the nREPL Clojure networked-REPL server. |
| 6 | +
|
| 7 | + Links |
| 8 | + ````` |
| 9 | + * `documentation <http://packages.python.org/nrepl-python-client>`_ |
| 10 | + * `development version <https://github.com/cemerick/nrepl-python-client>`_ |
| 11 | +''' |
2 | 12 |
|
3 | 13 | from setuptools import setup, find_packages |
4 | 14 |
|
5 | | -setup( |
6 | | - name = "nrepl-python-client", |
7 | | - version = "0.0.1", |
8 | | - packages = find_packages(), |
9 | | - # metadata for upload to PyPI |
10 | | - author = "Chas Emerick", |
11 | | - author_email = "chas@cemerick.com", |
12 | | - description = "A Python client for the nREPL Clojure networked-REPL server.", |
13 | | - license = "BSD 3-clause", |
14 | | - keywords = "clojure repl nrepl", |
15 | | - url = "http://github.com/cemerick/nrepl-python-client", |
16 | | - zip_safe = True, |
17 | | - #test_suite = "test.testbencode" |
18 | | - ) |
| 15 | +description = "A Python client for the nREPL Clojure networked-REPL server." |
| 16 | +classifiers = ['Development Status :: 4 - Beta', |
| 17 | + 'Environment :: Console', |
| 18 | + 'Intended Audience :: Developers', |
| 19 | + 'License :: OSI Approved :: BSD License' |
| 20 | + 'Natural Language :: English' |
| 21 | + 'Operating System :: OS Independent', |
| 22 | + 'Programming Language :: Python', |
| 23 | + 'Topic :: Software Development :: Interpreters', |
| 24 | + 'Topic :: Software Development :: Libraries :: Python Modules' |
| 25 | + 'Topic :: Utilities'] |
19 | 26 |
|
| 27 | +setup(name="nrepl-python-client", |
| 28 | + version="0.0.1", |
| 29 | + packages=find_packages(), |
| 30 | + # metadata for upload to PyPI |
| 31 | + author="Chas Emerick", |
| 32 | + author_email="chas@cemerick.com", |
| 33 | + description=description, |
| 34 | + long_description=__doc__, |
| 35 | + license="BSD 3-clause", |
| 36 | + keywords="clojure repl nrepl", |
| 37 | + url="https://github.com/cemerick/nrepl-python-client", |
| 38 | + zip_safe=True, |
| 39 | + classifiers=classifiers) |
0 commit comments