Skip to content

Commit 7eec869

Browse files
committed
Merge pull request cemerick#4 from maxcountryman/pypi
PyPI
2 parents bf73524 + 8af8455 commit 7eec869

8 files changed

Lines changed: 37 additions & 38 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ classes
1515
build
1616
*.pyc
1717
dist
18+
19+
*.egg*

nrepl_python_client.egg-info/PKG-INFO

Lines changed: 0 additions & 11 deletions
This file was deleted.

nrepl_python_client.egg-info/SOURCES.txt

Lines changed: 0 additions & 9 deletions
This file was deleted.

nrepl_python_client.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

nrepl_python_client.egg-info/requires.txt

Whitespace-only changes.

nrepl_python_client.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

nrepl_python_client.egg-info/zip-safe

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 35 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,39 @@
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+
'''
212

313
from setuptools import setup, find_packages
414

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']
1926

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

Comments
 (0)