Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
gitchangelog==2.3.0
Sphinx==1.4.5
# gitchangelog==2.3.0
Sphinx==7.2.6
26 changes: 12 additions & 14 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
[metadata]
name = grapefruit
version = 0.1a4
summary = A module to manipulate color information easily.
description-file =
README.rst
requires-dist =
version = 0.1a5
description = A module to manipulate color information easily.
long_description = file: README.rst

## sdist info
author = Xavier Basty
author_email = xbasty@gmail.com
home_page = https://github.com/xav/Grapefruit/
url = https://github.com/xav/Grapefruit/
keywords = color, colour
classifier =
classifiers =
Programming Language :: Python
Development Status :: 3 - Alpha
Intended Audience :: Developers
Expand All @@ -20,13 +18,13 @@ classifier =
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Multimedia :: Graphics

[files]
modules = grapefruit
resources =
README.rst = {doc}
doc/* = {doc}
extra_files =
setup.py
[options]
py_modules = grapefruit

[options.package_data]
grapefruit =
*.rst
doc/*

[nosetests]
verbosity = 3
Expand Down
9 changes: 1 addition & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

try:
from setuptools import setup
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
from setuptools import setup

setup(
setup_requires=['d2to1'],
extras_require={'test': ['nose', ]},
d2to1=True
)