1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Remove use_2to3 option and languages python 2 and 2.7 from setuptools
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2021-10-15
--- a/setup.py
+++ b/setup.py
@@ -60,8 +60,6 @@
'Operating System :: OS Independent',
'Programming Language :: Cython',
'Programming Language :: Python',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
@@ -71,7 +69,6 @@
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords='bioinformatics',
- use_2to3=True,
include_package_data=True,
package_data = {
'': ['*.vcf', '*.gz', '*.tbi'],
|