Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Acquisition
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Acquisition
Commits
ebee5109
Commit
ebee5109
authored
Feb 24, 2013
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prepare
parent
095d5f86
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
37 deletions
+38
-37
CHANGES.txt
CHANGES.txt
+2
-1
setup.py
setup.py
+36
-36
No files found.
CHANGES.txt
View file @
ebee5109
Changelog
=========
4.0 (
unreleased
)
4.0 (
2013-02-24
)
----------------
- Added trove classifiers to project metadata.
4.0a1 (2011-12-13)
------------------
...
...
setup.py
View file @
ebee5109
...
...
@@ -16,41 +16,41 @@
import
os
from
setuptools
import
setup
,
find_packages
,
Extension
setup
(
name
=
'Acquisition'
,
version
=
'4.0dev
'
,
url
=
'http://pypi.python.org/pypi/Acquisition
'
,
license
=
'ZPL 2.1
'
,
description
=
"Acquisition is a mechanism that allows objects to obtain "
"attributes from the containment hierarchy they're in."
,
author
=
'Zope Foundation and Contributors'
,
author_email
=
'zope-dev@zope.org
'
,
long_description
=
open
(
os
.
path
.
join
(
'src'
,
'Acquisition'
,
'README.txt'
)).
read
()
+
'
\
n
'
+
open
(
'CHANGES.txt'
).
read
(),
packages
=
find_packages
(
'src'
),
package_dir
=
{
''
:
'src'
},
classifiers
=
[
"Development Status :: 6 - Mature"
,
"Environment :: Web Environment"
,
"Framework :: Zope2"
,
"License :: OSI Approved :: Zope Public License"
,
"Operating System :: OS Independent"
,
"Programming Language :: Python"
,
"Programming Language :: Python :: 2 :: Only"
,
"Programming Language :: Python :: 2.6"
,
"Programming Language :: Python :: 2.7"
,
"Programming Language :: Python :: Implementation :: CPython"
,
],
ext_modules
=
[
Extension
(
"Acquisition._Acquisition"
,
[
os
.
path
.
join
(
'src'
,
'Acquisition'
,
'_Acquisition.c'
)],
include_dirs
=
[
'include'
,
'src'
]),
],
install_requires
=
[
setup
(
name
=
'Acquisition
'
,
version
=
'4.0
'
,
url
=
'http://pypi.python.org/pypi/Acquisition
'
,
license
=
'ZPL 2.1'
,
description
=
"Acquisition is a mechanism that allows objects to obtain "
"attributes from the containment hierarchy they're in."
,
author
=
'Zope Foundation and Contributors
'
,
author_email
=
'zope-dev@zope.org'
,
long_description
=
open
(
os
.
path
.
join
(
'src'
,
'Acquisition'
,
'README.txt'
)).
read
()
+
'
\
n
'
+
open
(
'CHANGES.txt'
).
read
(),
packages
=
find_packages
(
'src'
),
package_dir
=
{
''
:
'src'
},
classifiers
=
[
"Development Status :: 6 - Mature"
,
"Environment :: Web Environment"
,
"Framework :: Zope2"
,
"License :: OSI Approved :: Zope Public License"
,
"Operating System :: OS Independent"
,
"Programming Language :: Python"
,
"Programming Language :: Python :: 2 :: Only"
,
"Programming Language :: Python :: 2.6"
,
"Programming Language :: Python :: 2.7"
,
"Programming Language :: Python :: Implementation :: CPython"
,
],
ext_modules
=
[
Extension
(
"Acquisition._Acquisition"
,
[
os
.
path
.
join
(
'src'
,
'Acquisition'
,
'_Acquisition.c'
)],
include_dirs
=
[
'include'
,
'src'
]),
],
install_requires
=
[
'ExtensionClass >= 4.0a1'
,
'zope.interface'
,
],
include_package_data
=
True
,
zip_safe
=
False
,
)
],
include_package_data
=
True
,
zip_safe
=
False
,
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment