-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 748 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 748 Bytes
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
#!/usr/bin/env python
import os
import shutil
import sys
from distutils.core import setup, Command
if 'develop' in sys.argv:
# use setuptools for develop, but nothing else
from setuptools import setup
setup(name='molecular_hydrogen',
version='0.1',
description='Molecular Parameters for H2',
author=['Adam Ginsburg'],
author_email=['adam.g.ginsburg@gmail.com'],
url='https://github.com/keflavich/molecular_hydrogen/',
packages=['molecular_hydrogen'],
requires=['numpy'],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
],
)