-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 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 setuptools import setup, find_packages
setup(
name='WaterRocket',
version='0.1.5',
license='MIT',
author="Mohamed Nennouche",
author_email='[email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/MohamedNennouche/Water-rocket-launch-simulator',
keywords='water rocket simulation',
install_requires=[
'matplotlib',
'numpy',
'pandas',
'reportlab',
'seaborn',
'tabulate'
],
long_description="""WaterRocket is a Python module for simulating the firing of a water rocket, allowing to generate graphs of the evolution during the flight as well as a PDF report of this flight""",
long_description_content_type='text/markdown',
)