File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22from 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
55from setuptools import setup , find_packages
66
99
1010setup (
1111 name = "clamd" ,
12- version = " 1.0.2.dev0" ,
12+ version = ' 1.0.2.dev0' ,
1313 author = "Thomas Grainger" ,
1414 author_email = "python-clamd@graingert.co.uk" ,
1515 maintainer = "Thomas Grainger" ,
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" ,
You can’t perform that action at this time.
0 commit comments