This repository was archived by the owner on Dec 21, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 2
2
# This flag says that the code is written to work on both Python 2 and Python
3
3
# 3. If at all possible, it is good practice to do this. If you cannot, you
4
4
# will need to generate wheels for each Python version that you support.
5
- universal =1
5
+ python-tag =py34
Original file line number Diff line number Diff line change 12
12
package_dir = {'' : 'src' },
13
13
packages = find_packages ("src" , exclude = "tests" ),
14
14
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
15
- python_requires = '>=2.7 ' ,
15
+ python_requires = '>=3.4 ' ,
16
16
test_suite = "tests.tests" ,
17
17
classifiers = [
18
18
'Development Status :: 3 - Alpha' ,
19
19
'Intended Audience :: Developers' ,
20
20
'License :: OSI Approved :: BSD License' ,
21
21
'Operating System :: OS Independent' ,
22
22
'Programming Language :: Python' ,
23
- 'Programming Language :: Python :: 2' ,
24
- 'Programming Language :: Python :: 2.7' ,
25
23
'Programming Language :: Python :: 3' ,
26
24
'Programming Language :: Python :: 3.4' ,
27
25
'Programming Language :: Python :: 3.5' ,
You can’t perform that action at this time.
0 commit comments