This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
collective.dms.basecontent/setup.py

45 lines
1.2 KiB
Python

#! -*- coding: utf8 -*-
from setuptools import setup, find_packages
import os
version = '1.0'
long_description = (
open('README.rst').read()
+ '\n' +
'Contributors\n'
'============\n'
+ '\n' +
open('CONTRIBUTORS.rst').read()
+ '\n' +
open('CHANGES.rst').read()
+ '\n')
setup(name='collective.dms.basecontent',
version=version,
description="Base content types for document management system",
long_description=long_description,
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
],
keywords='',
author='"C\xc3\xa9dric Messiant"',
author_email='cedricmessiant@ecreall.com',
url='http://svn.plone.org/svn/collective/',
license='gpl',
packages=find_packages('src'),
package_dir = {'': 'src'},
namespace_packages=['collective', 'collective.dms'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)