-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (27 loc) · 913 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
28
29
30
31
32
33
#!/usr/bin/env python
from distutils.core import setup
import ref_index
version = ref_index.__version__
description = """\
Refractive index of air, and vacuum-air wave length conversion."""
long_description = open("README.rst", encoding="utf-8").read()
setup(
name="ref_index",
version=version,
description=description,
long_description=long_description,
license='BSD',
author="Prasanth Nair",
author_email="[email protected]",
url='http://github.com/phn/ref_index',
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python',
],
py_modules=["ref_index"]
)