Skip to content

Commit

Permalink
Specify release topics
Browse files Browse the repository at this point in the history
  • Loading branch information
N-Wouda committed Jul 5, 2019
1 parent cad5fc1 commit 11a713a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import setuptools

MAJOR = 1
MINOR = 0
MAINTENANCE = 1
MODIFIER = ""

VERSION = "1.0.0"
VERSION = "{0}.{1}.{2}{3}".format(MAJOR, MINOR, MAINTENANCE, MODIFIER)


# Long description is simply the README file
Expand All @@ -20,7 +24,7 @@
url="https://github.com/N-Wouda/ALNS",
project_urls={
"Tracker": "https://github.com/N-Wouda/ALNS/issues",
"Source": "https://github.com/N-Wouda/ALNS"
"Source": "https://github.com/N-Wouda/ALNS",
},
packages=setuptools.find_packages(exclude=['examples']),
classifiers=[
Expand All @@ -32,7 +36,9 @@
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha"
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
],
python_requires='~=3.4',
install_requires=[
Expand Down

0 comments on commit 11a713a

Please sign in to comment.