-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.19 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
from setuptools import setup, find_packages # Extension
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
required_list = f.read().splitlines()
setup(
name="some_tools",
version="0.0.9",
author="Matteo Bagagli",
author_email="[email protected]",
description="tools and routines for the SOME project",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mbagagli/some_tools",
python_requires='>=3.8',
install_requires=required_list,
setup_requires=['wheel'],
packages=["some_tools"],
package_data={"": ['*.yml', ]},
#
data_files=[
('output_dir', ['some_tools/config/pygmt_defaults.yml', ]),
],
#
include_package_data=True,
zip_safe=False,
scripts=['bin/sometools_map.py', 'bin/sometools_map_elev_sect.py', 'bin/sometools_trace.py'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Unix",
"Operating System :: MacOS",
"Intended Audience :: Science/Research",
]
)