Skip to content

Commit d035a5f

Browse files
committed
RLS Version 0.1.0
First release
1 parent 8c23bb3 commit d035a5f

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
lines changed

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Version 0.1.0 11 Jan 2024 by BigDataBiology
2+
* First release

gmsc_mapper/gmsc_mapper_version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '0.1.0'

setup.py

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
1-
from os import path
2-
from setuptools import setup, find_packages
1+
from setuptools import setup
2+
3+
exec(compile(open('gmsc_mapper/gmsc_mapper_version.py').read(),
4+
'gmsc_mapper/gmsc_mapper_version.py', 'exec'))
5+
6+
long_description = open('README.md', encoding='utf-8').read()
37

48
setup(
5-
name="GMSC-mapper",
6-
version="0.0.1a0",
7-
description="Command line tool to query the Global Microbial smORFs Catalog (GMSC)",
8-
long_description=open("./README.md", "r").read(),
9-
long_description_content_type="text/markdown",
10-
url="https://github.com/BigDataBiology/GMSC-mapper",
9+
name="GMSC-mapper",
10+
version=__version__,
11+
description="Command line tool to query the Global Microbial smORFs Catalog (GMSC)",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/BigDataBiology/GMSC-mapper",
1115
author="Yiqian Duan",
12-
author_email="[email protected]",
16+
author_email="[email protected]",
1317
license="MIT",
14-
classifiers=[
15-
"Development Status :: 3 - Alpha",
18+
classifiers=[
19+
"Development Status :: 4 - Beta",
1620
"Topic :: Scientific/Engineering :: Bio-Informatics",
1721
"License :: OSI Approved :: MIT License",
1822
'Programming Language :: Python :: 3.7',
@@ -21,10 +25,10 @@
2125
'Programming Language :: Python :: 3.10',
2226
'Programming Language :: Python :: 3.11',
2327
],
24-
packages=['gmsc_mapper'],
28+
packages=['gmsc_mapper'],
2529
install_requires=open('./requirements.txt', 'r').read().splitlines(),
2630
zip_safe=False,
27-
entry_points={
31+
entry_points={
2832
"console_scripts": ['gmsc-mapper=gmsc_mapper.main:main'],
2933
}
3034
)

0 commit comments

Comments
 (0)