Skip to content

Commit 2b144c8

Browse files
committed
Set version number in setup.py
1 parent de990f2 commit 2b144c8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
from distutils.util import get_platform, change_root, convert_path
2828

2929
class check_and_build( build ):
30-
30+
3131
def run(self):
3232
chk = True
3333
for req in require_python:
3434
chk &= self.check_python(req)
3535
for req in require_packages:
3636
chk &= self.check_package(req)
37-
if not chk:
37+
if not chk:
3838
sys.exit(1)
3939
build.run(self)
4040

@@ -70,7 +70,7 @@ def check_package(self, req):
7070
class install_integron_finder(install):
7171

7272
#I use record to store all installed files and reuse this record file for uninstall
73-
#so this option is not available anymore for the users
73+
#so this option is not available anymore for the users
7474
for i, opt in enumerate(install.user_options):
7575
if opt[0] == 'record=':
7676
install.user_options.pop(i)
@@ -139,7 +139,7 @@ def finalize_options(self):
139139
('force', 'force'),
140140
)
141141
self.prefix_data = self.install_dir
142-
self.files_2_install = self.distribution.data_files
142+
self.files_2_install = self.distribution.data_files
143143
with open(self.distribution.uninstall_prefix, "a") as _f:
144144
_f.write('install_data = {}\n'.format(self.install_dir))
145145

@@ -331,7 +331,7 @@ def subst_vars(src, dst, vars):
331331
'matplotlib (>=1.4.2)']
332332

333333
setup(name='integron_finder',
334-
version=time.strftime("%Y%m%d"),
334+
version="Version 1.4",
335335
description="""Integron Finder aims at detecting integrons in DNA sequences
336336
by finding particular features of the integron:
337337
the attC sites, the integrase

0 commit comments

Comments
 (0)