@@ -25,19 +25,14 @@ def read(*names, **kwargs):
25
25
).read ()
26
26
27
27
28
- # Enable code coverage for C code: we can't use CFLAGS=-coverage in tox.ini, since that may mess with compiling
29
- # dependencies (e.g. numpy). Therefore we set SETUPPY_CFLAGS=-coverage in tox.ini and copy it to CFLAGS here (after
30
- # deps have been safely installed).
31
- if 'TOXENV' in os .environ and 'SETUPPY_CFLAGS' in os .environ :
32
- os .environ ['CFLAGS' ] = os .environ ['SETUPPY_CFLAGS' ]
33
-
34
28
setup (
35
29
name = 'axelrod-fortran' ,
36
30
version = '0.1.0' ,
37
31
license = 'MIT license' ,
38
32
description = 'Python wrapper for strategies originally written in Fortran' ,
39
33
long_description = '%s\n %s' % (
40
- re .compile ('^.. start-badges.*^.. end-badges' , re .M | re .S ).sub ('' , read ('README.rst' )),
34
+ re .compile ('^.. start-badges.*^.. end-badges' , re .M | re .S ).sub (
35
+ '' , read ('README.rst' )),
41
36
re .sub (':[a-z]+:`~?(.*?)`' , r'``\1``' , read ('CHANGELOG.rst' ))
42
37
),
43
38
author = 'Owen Campbell, Vincent Knight, Marc Harper' ,
@@ -49,7 +44,6 @@ def read(*names, **kwargs):
49
44
include_package_data = True ,
50
45
zip_safe = False ,
51
46
classifiers = [
52
- # complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
53
47
'Development Status :: 5 - Production/Stable' ,
54
48
'Intended Audience :: Developers' ,
55
49
'License :: OSI Approved :: MIT License' ,
@@ -60,9 +54,6 @@ def read(*names, **kwargs):
60
54
'Programming Language :: Python :: Implementation :: CPython' ,
61
55
'Topic :: Utilities' ,
62
56
],
63
- keywords = [
64
- # eg: 'keyword1', 'keyword2', 'keyword3',
65
- ],
66
57
install_requires = [
67
58
'axelrod == 3.1.2' ,
68
59
],
0 commit comments