-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
55 lines (47 loc) · 1.59 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os import path
from setuptools import setup, find_packages
CURRENT_PATH = path.abspath(path.dirname(__file__))
with open(path.join(CURRENT_PATH, "README.md")) as file:
readme = file.read()
with open(path.join(CURRENT_PATH, "HISTORY.md")) as file:
history = file.read()
setup(
name="apsg",
version="1.2.2",
description="APSG - The package for structural geologists",
long_description=readme + "\n\n" + history,
long_description_content_type="text/markdown",
author="Ondrej Lexa",
author_email="[email protected]",
url="https://github.com/ondrolexa/apsg",
license="MIT",
keywords="apsg",
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=["numpy", "matplotlib", "scipy", "sqlalchemy", "pandas"],
extras_require={
"docs": ["sphinx", "ipykernel", "nbsphinx"],
"test": ["pytest", "black"],
"extra": ["jupyterlab"],
},
project_urls={
"Documentation": "https://apsg.readthedocs.io/",
"Source Code": "https://github.com/ondrolexa/apsg/",
"Bug Tracker": "https://github.com/ondrolexa/apsg/issues/",
},
entry_points="""
[console_scripts]
iapsg=apsg.shell:main
""",
)