Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Commit

Permalink
Add some classifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz authored Dec 6, 2019
1 parent 2f0df83 commit ed71427
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,29 @@

setup(
name = name,
version = '0',
version = '0.4.dev0',
author = 'Jim Fulton',
author_email = 'jim@zope.com',
license = 'ZPL 2.1',
keywords = 'zope3',
description=open('README.txt').read(),
long_description=long_description,

classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
],
packages = find_packages('src'),
namespace_packages = ['zc'],
package_dir = {'': 'src'},
Expand Down

0 comments on commit ed71427

Please sign in to comment.