-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
27 lines (23 loc) · 836 Bytes
/
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
from skbuild import setup
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="PhotochemPy",
packages=['PhotochemPy'],
python_requires='>=3.7',
version="0.2.17",
license="MIT",
install_requires=['numpy>=1.21','scipy'],
author='Nicholas Wogan',
author_email = '[email protected]',
description = "Photochemical model of planet's atmospheres.",
long_description=long_description,
long_description_content_type='text/markdown',
url = "https://github.com/Nicholaswogan/PhotochemPy",
include_package_data=True,
cmake_args=['-DSKBUILD=ON',\
'-DBUILD_F2PY_PHOTOCHEM=ON',\
'-DBUILD_STATIC_PHOTOCHEM=OFF']
)