Skip to content

Commit

Permalink
BUG Fix classifier list in setup.py
Browse files Browse the repository at this point in the history
- "Programming Language :: R :: 3.6" is not part of the PyPI list
- Update status to stable
  • Loading branch information
luispedro committed Sep 4, 2021
1 parent b4c9849 commit c22df91
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
@@ -1,3 +1,6 @@
Unreleased
* Fix classifier list for PyPI

Version 1.0.1 2021-09-02
* No longer crash on very short peptides (1 or 2 amino acids)

Expand Down
8 changes: 5 additions & 3 deletions setup.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2019-2020, MACREL Authors
# Copyright (C) 2019-2021, MACREL Authors
# vim: set ts=4 sts=4 sw=4 expandtab smartindent:
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down Expand Up @@ -42,14 +42,16 @@
packages = setuptools.find_packages()

classifiers = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: R :: 3.6',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: R',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
]
Expand Down

0 comments on commit c22df91

Please sign in to comment.