Skip to content

Commit

Permalink
Update package distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
hvelarde committed Oct 16, 2013
1 parent 7997afe commit 1b8e884
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 16 deletions.
8 changes: 5 additions & 3 deletions MANIFEST.in
@@ -1,4 +1,6 @@
recursive-include Products *
recursive-include docs *.txt
include *.rst
global-exclude *pyc

graft docs
graft Products

global-exclude *.pyc
39 changes: 26 additions & 13 deletions setup.py
@@ -1,4 +1,8 @@
from setuptools import setup, find_packages
# -*- coding: utf-8 -*-

from setuptools import find_packages
from setuptools import setup

import os

version = '1.4.dev0'
Expand All @@ -9,29 +13,38 @@
long_description=open("README.rst").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Framework :: Plone",
"Framework :: Plone :: 4.1",
"Framework :: Plone :: 4.2",
"Framework :: Plone :: 4.3",
],
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Plone',
'Framework :: Plone :: 4.1',
'Framework :: Plone :: 4.2',
'Framework :: Plone :: 4.3',
],
keywords='FAQ Archetypes Plone Contenttype',
author='Four Digits',
author_email='info@fourdigits.nl',
url='https://github.com/tomgross/Products.Faq',
url='https://github.com/collective/Products.Faq',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Products.Archetypes',
'Products.ATContentTypes',
'Products.CMFCore',
'Products.GenericSetup',
'setuptools',
# -*- Extra requirements: -*-
'zope.i18nmessageid',
'zope.interface',
],
extras_require = {
'test': ['plone.app.testing']
extras_require={
'test': [
'plone.app.testing',
'plone.testing',
'unittest2',
]
},
entry_points="""
# -*- Entry points: -*-
Expand Down

0 comments on commit 1b8e884

Please sign in to comment.