-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·27 lines (23 loc) · 944 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
26
27
#!/usr/bin/env python
import glob
from setuptools import setup
scripts_path = 'scripts/*.py'
# file_list = glob.glob(scripts_path)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='nondim-slurry',
version='0.1',
description='Python code that solves the 1D, steady, spherical slurry \
equations outlined in Wong et al (in prep, EPSL) (see also Wong et al. 2018)',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/jnywong/nondim-slurry',
license='LICENSE.md',
author='Jenny Wong',
author_email='[email protected]',
packages=['slurpy'],
# install_requires=[<pypi_package_name>],
# scripts=file_list,
package_data={'slurpy': ['lookupdata/*.csv', 'scripts/*.py']},
install_requires=['numpy','scipy','pandas','matplotlib','pytest'],
)