We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 650769b + a24fcc8 commit 5b32a29Copy full SHA for 5b32a29
setup.py
@@ -1,6 +1,6 @@
1
#!/usr/bin/env python
2
from ez_setup import use_setuptools
3
-use_setuptools(version="0.7.0") # The version that merged with Distribute
+use_setuptools("0.7.0")
4
5
from setuptools import setup, find_packages
6
@@ -9,7 +9,7 @@
9
10
setup(
11
name="clamd",
12
- version="1.0.2.dev0",
+ version='1.0.2.dev0',
13
author="Thomas Grainger",
14
author_email="[email protected]",
15
maintainer="Thomas Grainger",
@@ -20,9 +20,9 @@
20
url="https://github.com/graingert/python-clamd",
21
package_dir={'': 'src'},
22
packages=find_packages('src', exclude="tests"),
23
- classifiers = (
+ classifiers = [
24
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
25
- ),
+ ],
26
tests_require = (
27
"nose==1.3.3",
28
"six==1.7.3",
0 commit comments