-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.46 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
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
# Note:
#
# This medium article descripbes the travis / releases integration steps:
# https://medium.com/@mikkokotila/deploying-python-packages-to-pypi-with-travis-works-9a6597781556
#
# The Hitchiker's guide to python provides an excellent, standard, method for creating python packages:
# http://docs.python-guide.org/en/latest/writing/structure/
#
# To deploy on PYPI follow the instructions at the bottom of:
# https://packaging.python.org/tutorials/distributing-packages/#uploading-your-project-to-pypi
from setuptools import setup, find_packages
with open('README.md') as f:
readme_text = f.read()
setup(
name='es_flow',
version='0.1.2',
description='Environment Studio - flow',
long_description=readme_text,
long_description_content_type="text/markdown",
author='thclark',
url='https://github.com/octue/es-flow',
packages=find_packages(exclude=('tests', 'docs')),
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
"Operating System :: OS Independent"
],
include_package_data=True,
install_requires=[
],
keywords=['turbulence', 'environment', 'boundary', 'layer', 'atmospheric']
)