-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 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
from setuptools import setup, find_packages
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='Shelegia_Motta_2021',
packages=find_packages(exclude=["Shelegia_Motta_2021_Test"]),
version='1.0.3', # change with new version
license='MIT',
description='Implements the model presented in Shelegia and Motta (2021)',
long_description=long_description,
long_description_content_type='text/markdown',
author='Manuel Bieri',
author_email='mail@manuelbieri.ch',
url='https://github.com/manuelbieri/shelegia_motta_2021',
download_url='https://github.com/manuelbieri/Shelegia_Motta_2021/archive/refs/tags/v1.0.3.tar.gz', # change with new version
keywords=['Acquisition', 'Kill Zone'],
classifiers=[
'Development Status :: 5 - Production/Stable', # "3 - Alpha" / "4 - Beta" / "5 - Production/Stable"
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
install_requires=[
"matplotlib>=3.9.2", # change with new version
],
)