Changeset 222:223c3c666f9e
- Timestamp:
- 08/09/07 00:43:52
(1 year ago)
- Author:
- "Brian Warner <warner@lothar.com>"
- branch:
- default
- Message:
setup.py: add classifiers= and other metadata. Closes #7.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r221 |
r222 |
|
| 1 | 1 | 2007-08-09 Brian Warner <warner@lothar.com> |
|---|
| | 2 | |
|---|
| | 3 | * setup.py: add classifiers= and platforms=, update metadata, so |
|---|
| | 4 | that I can use 'setup.py register' for the next release. Closes #7. |
|---|
| 2 | 5 | |
|---|
| 3 | 6 | * README: update references to the home page. Closes #9. |
|---|
| r46 |
r222 |
|
| 11 | 11 | description="Foolscap contains an RPC protocol for Twisted.", |
|---|
| 12 | 12 | author="Brian Warner", |
|---|
| 13 | | author_email="warner@twistedmatrix.com", |
|---|
| 14 | | url="http://twistedmatrix.com/trac/wiki/FoolsCap", |
|---|
| | 13 | author_email="warner-foolscap@lothar.com", |
|---|
| | 14 | url="http://foolscap.lothar.com/", |
|---|
| | 15 | download_url="http://foolscap.lothar.com/releases/foolscap-0.1.5.tar.gz", |
|---|
| 15 | 16 | license="MIT", |
|---|
| 16 | 17 | long_description="""\ |
|---|
| … | … | |
| 20 | 21 | object reference system, and a capability-based security model. |
|---|
| 21 | 22 | """, |
|---|
| | 23 | classifiers=[ |
|---|
| | 24 | "Development Status :: 3 - Alpha", |
|---|
| | 25 | "Operating System :: OS Independent", |
|---|
| | 26 | "License :: OSI Approved :: MIT License", |
|---|
| | 27 | "Programming Language :: Python", |
|---|
| | 28 | "Topic :: Internet", |
|---|
| | 29 | "Topic :: Software Development :: Libraries :: Python Modules", |
|---|
| | 30 | "Topic :: System :: Distributed Computing", |
|---|
| | 31 | "Topic :: System :: Networking", |
|---|
| | 32 | "Topic :: Software Development :: Object Brokering", |
|---|
| | 33 | ], |
|---|
| | 34 | platforms=["any"], |
|---|
| | 35 | |
|---|
| 22 | 36 | packages=["foolscap", "foolscap/slicers", "foolscap/test"], |
|---|
| 23 | 37 | ) |
|---|