-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
26 lines (24 loc) · 1 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="blockdiagram",
version="0.1.0",
author="Zoltan Sylvester",
author_email="[email protected]",
description="Module for creating block diagrams and other three-dimensional displays from stratigraphic models",
keywords = 'geomorphology, stratigraphy, 3D visualization',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zsylvester/blockdiagram",
packages=['blockdiagram'],
scripts=['/Users/zoltan/Dropbox/Git/blockdiagram/blockdiagram/blockdiagram.py'],
install_requires=['numpy','matplotlib','mayavi','scipy','pillow'],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
'Intended Audience :: Science/Research',
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)