-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a30f583
commit ccbd0b7
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
zip_safe=False, | ||
maintainer="The Mathics Team", | ||
maintainer_email="[email protected]", | ||
license="GPLv3", | ||
packages=[ | ||
"mathics_doctest", | ||
], | ||
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", | ||
], | ||
) |