Skip to content

Commit 958bfa1

Browse files
author
Toni Ruža
committed
Use DESCRIPTION.rst for distutil package description.
Doing this omits the screenshots on the PyPI project page.
1 parent d48e368 commit 958bfa1

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# wheel==0.23.0
1+
wheel>=0.23.0
22
python-dateutil>=2.4.2
33
sqlalchemy>=0.9
44
Pillow>=2.7.0

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,3 @@ with-xunit=1
1313
# --cover-html when run interactively to view HTML coverage output
1414
# --with-specplugin to view nicely human-readable RSpec output; you won't see
1515
# coverage info in stdout if you do this
16-
17-
[metadata]
18-
description-file = DESCRIPTION.rst

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
SETUP_DIR = os.path.dirname(os.path.realpath(__file__))
1010
EGG_RE = re.compile('#egg=([^#@\n]+)')
1111

12-
readme = open(os.path.join(SETUP_DIR, 'README.rst')).read()
12+
readme = open(os.path.join(SETUP_DIR, 'DESCRIPTION.rst')).read()
1313
history = open(
1414
os.path.join(
1515
SETUP_DIR, 'HISTORY.rst')).read().replace('.. :changelog:', '')
@@ -72,6 +72,7 @@ def recurse_data_files(path):
7272
setup(
7373
name='datagrid_gtk3',
7474
version='0.1.2',
75+
license='MIT',
7576
description='MVC framework for working with the GTK3 TreeView widget.',
7677
long_description=readme + '\n\n' + history,
7778
author='NowSecure',

0 commit comments

Comments
 (0)