-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (44 loc) · 1.13 KB
/
Copy pathsetup.py
File metadata and controls
52 lines (44 loc) · 1.13 KB
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
DESCRIPTION = "Isotopic analysis of fluid inclusions"
LONG_DESCRIPTION = """\
"""
DISTNAME = 'IsoFluid'
MAINTAINER = 'Benedikt Hemmer'
MAINTAINER_EMAIL = 'benedikt.hemmer@iup.uni-heidelberg.de'
URL = 'https://github.com/bhemmer/IsoFluid'
LICENSE = 'GNU GPLv3'
DOWNLOAD_URL = 'https://github.com/bhemmer/IsoFluid'
VERSION = '1.0'
INSTALL_REQUIRES = [
'numpy>=1.16.5',
'datetime>=3.7',
'scipy>=1.3',
]
PACKAGES = [
'IsoFluid',
]
CLASSIFIERS = [
'Programming Language :: Python :: 3.7',
'Development Status :: 4 - Beta',
]
try:
from setuptools import setup
_has_setuptools = True
except ImportError:
from distutils.core import setup
if __name__ == "__main__":
setup(
name=DISTNAME,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license=LICENSE,
url=URL,
version=VERSION,
download_url=DOWNLOAD_URL,
install_requires=INSTALL_REQUIRES,
packages=PACKAGES,
classifiers=CLASSIFIERS
)