Skip to content

Commit 5b32a29

Browse files
committed
Merge pull request #7 from graingert/bugfix/sdist-upload-fails
Fix packaging for sdist register upload
2 parents 650769b + a24fcc8 commit 5b32a29

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
from ez_setup import use_setuptools
3-
use_setuptools(version="0.7.0") # The version that merged with Distribute
3+
use_setuptools("0.7.0")
44

55
from setuptools import setup, find_packages
66

@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="clamd",
12-
version="1.0.2.dev0",
12+
version='1.0.2.dev0',
1313
author="Thomas Grainger",
1414
author_email="[email protected]",
1515
maintainer="Thomas Grainger",
@@ -20,9 +20,9 @@
2020
url="https://github.com/graingert/python-clamd",
2121
package_dir={'': 'src'},
2222
packages=find_packages('src', exclude="tests"),
23-
classifiers = (
23+
classifiers = [
2424
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
25-
),
25+
],
2626
tests_require = (
2727
"nose==1.3.3",
2828
"six==1.7.3",

0 commit comments

Comments
 (0)