Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TiagoCavalcante committed Sep 12, 2021
1 parent a30f583 commit 2c92604
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import sys

python_version = sys.version_info[:2]
if python_version < (3, 6):
raise Exception(
f"This package requires Python 3.7 or greater. You have {python_version}."
)

from setuptools import setup


setup(
name="Mathics-doctest",
version="0.1.0",
install_requires=[
"Mathics3 >= 4.0.0"
],
zip_safe=False,
maintainer="The Mathics Team",
maintainer_email="[email protected]",
license="GPLv3",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)

0 comments on commit 2c92604

Please sign in to comment.