forked from FEniCS/ufl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·55 lines (48 loc) · 1.52 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
from setuptools import setup
import sys
module_name = "ufl"
if sys.version_info < (3, 5):
print("Python 3.5 or higher required, please upgrade.")
sys.exit(1)
version = "2019.2.0.dev0"
url = "https://bitbucket.org/fenics-project/{}/".format(module_name)
tarball = None
if 'dev' not in version:
tarball = url + "downloads/fenics-{}-{}.tar.gz".format(module_name, version)
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Operating System :: POSIX
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Scientific/Engineering :: Mathematics
Topic :: Software Development :: Libraries :: Python Modules
"""
setup(
name="fenics-ufl",
version=version,
description="Unified Form Language",
author="Martin Sandve Alnæs, Anders Logg",
author_email="fenics-dev@googlegroups.com",
url=url,
download_url=tarball,
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
packages=[
"ufl",
"ufl.utils",
"ufl.finiteelement",
"ufl.core",
"ufl.corealg",
"ufl.algorithms",
"ufl.formatting",
],
package_dir={"ufl": "ufl"},
install_requires=["numpy"])