-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (36 loc) · 1.09 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
from setuptools import setup, find_packages
import os
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="asdf-sextant",
version="0.1.2",
author="Lion Krischer",
author_email="lion.krischer@gmail.com",
description="GUI to explore ASDF files",
url="https://github.com/SeismicData/asdf_sextant",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=["Programming Language :: Python :: 3"],
packages=find_packages(),
package_data={
"asdf_sextant": [
"icon.png",
"resources/index_event.html",
"resources/index.html",
"resources/script.js",
"resources/script_event.js",
]
},
python_requires=">=3.6",
install_requires=[
"pyasdf",
"pyside2",
"pyqtgraph>=0.11.0rc0",
"qdarkstyle",
],
entry_points={
"console_scripts": ["asdf-sextant=asdf_sextant.main:launch"],
},
)