-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (30 loc) · 1.27 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
"""
Allows installation via pip, e.g. by navigating to this directory with the command prompt, and using 'pip install .'
"""
import sys
from setuptools import setup, find_packages
# Make sure to include the readme
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='cusfbamboo',
author = 'Daniel Gibbons',
author_email = '[email protected]',
version = '0.2.4',
license = ' AGPL-3.0',
packages = find_packages(),
install_requires = ['numpy', 'matplotlib', 'scipy'],
description = 'Cooling system modelling for liquid rocket engines',
keywords = ['rocket', 'engine', 'liquid', 'cooling', 'spaceflight', 'thermal'],
download_url = 'https://github.com/cuspaceflight/bamboo/archive/refs/tags/0.2.4.tar.gz',
url = 'https://github.com/cuspaceflight/bamboo',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3'],
long_description = long_description,
long_description_content_type='text/markdown'
)