-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 loc) · 1.38 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
# -*- coding: utf 8 -*-
"""
Python installation file.
"""
import sys
from os import path
from setuptools import setup, find_packages
if not sys.version_info[:2] >= (3, 8):
sys.exit(f"vector_geology is only meant for Python 3.10 and up.\n"
f"Current version: {sys.version_info[0]}.{sys.version_info[1]}.")
this_directory = path.abspath(path.dirname(__file__))
readme = path.join(this_directory, "README.rst")
with open(readme, "r", encoding="utf-8") as f:
long_description = f.read()
long_description = long_description.split('inclusion-marker')[-1]
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
setup(
name="vector_geology",
packages=find_packages(exclude=("tests", "docs", "examples")),
description="TO BE UPDATED",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://vectorproject.eu/",
author="The Vector Team",
author_email="[email protected]",
license="EUPL-1.2",
classifiers=CLASSIFIERS,
zip_safe=False,
use_scm_version={
"root": ".",
"relative_to": __file__,
"write_to": path.join("vector_geology", "_version.py"),
},
setup_requires=["setuptools_scm"],
)