Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
author = 'Lutz Hamel, Tim Colaneri, Oliver McLaughlin, Ariel Finkel, Theodore Henson, Calvin Higgins, Christian Tropeano'

# The full version, including alpha/beta/rc tags
release = '1.1.4'
# when generating docs make sure that PYTHONPATH points
# to the root directory of the github repo
from asteroid.version import VERSION
release = VERSION


# -- General configuration ---------------------------------------------------
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# when cutting releases make sure that PYTHONPATH points
# to the root directory of the github repo

from setuptools import setup, find_packages
from asteroid.version import VERSION

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name="asteroid-lang",
version="1.1.4",
version=VERSION,
author="University of Rhode Island",
author_email="lutzhamel@uri.edu",
description="A modern, multi-paradigm programming language.",
Expand Down