-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
43 lines (37 loc) · 1.07 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
43
"""
PyBlock
"""
import os
import sys
from setuptools import setup, find_packages
from distutils.sysconfig import get_python_lib
# - Pull the header into a variable
doclines = __doc__.split("\n")
VERSION = '1.4'
DATADIR = os.sep.join([os.path.dirname(__file__), 'data'])
# - Set variables for setup
PACKAGES = ['pyblock']
package_dir = {'': 'pyblock'}
# - Run setup
setup(
name='pyblock',
version=VERSION,
url='https://github.com/tjlang',
author='Timothy Lang',
author_email='[email protected]',
description=doclines[0],
packages=PACKAGES,
package_data={'pyblock': ['data/*.txt']},
include_package_data=True,
classifiers=["""
Development Status :: Beta,
Programming Language :: Python",
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Atmospheric Science
Operating System :: Unix
Operating System :: POSIX :: Linux
Operating System :: MacOS
"""],
long_description="""Blockage Correction Tools""",
install_requires=['numpy'],
)