Commit a6658fa 1 parent 3b6c8e3 commit a6658fa Copy full SHA for a6658fa
File tree 2 files changed +2
-11
lines changed
2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 6
6
env : TOXENV=py27
7
7
- python : 2.7
8
8
env : TOXENV=py27-pandas
9
- - python : 3.4
10
- env : TOXENV=py34
11
- - python : 3.4
12
- env : TOXENV=py34-pandas
13
9
- python : 3.5
14
10
env : TOXENV=py35
15
11
- python : 3.5
Original file line number Diff line number Diff line change 3
3
from setuptools import setup
4
4
from sys import version_info
5
5
6
- if version_info < (3 , 3 ):
7
- requirements = ["pathlib" ]
8
- else :
9
- requirements = []
10
-
11
6
setup (name = "mpd_pydb" ,
12
7
author = "Wieland Hoffmann" ,
13
8
author_email = "themineo@gmail.com" ,
21
16
"Natural Language :: English" ,
22
17
"Operating System :: OS Independent" ,
23
18
"Programming Language :: Python :: 2.7" ,
24
- "Programming Language :: Python :: 3.4" ],
19
+ "Programming Language :: Python :: 3.5" ,
20
+ "Programming Language :: Python :: 3.6" ,],
25
21
description = "Module for reading an MPD database" ,
26
22
long_description = open ("README.rst" ).read (),
27
23
setup_requires = ["setuptools_scm" , "pytest-runner" ],
28
24
use_scm_version = {"write_to" : "mpd_pydb/version.py" },
29
- install_requires = requirements ,
30
25
extras_require = {
31
26
'docs' : ['sphinx' ]
32
27
},
You can’t perform that action at this time.
0 commit comments