-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 1.01 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
from setuptools import setup, find_packages
setup(name='parqflow',
version='0.0.3',
packages=find_packages(),
description='CFD ParqFlow Format Library',
long_description='File format describing CFD wind flow simulation variables',
author='Diogo Friggo',
author_email='[email protected]',
maintainer='Diogo Friggo',
maintainer_email='[email protected]',
url='https://github.com/cfd_file_format',
license='MIT',
keywords=['wind', 'flow', 'cfd'],
#https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=['Development Status :: 1 - Planning',
'Intended Audience :: Customer Service',
'Environment :: Other Environment',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
],
python_requires='>=3.7',
install_requires=[
'pandas',
'pyarrow',
]
)