-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 833 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
setup(name='modtran_wrapper',
version='0.1.0',
description='A MODTRAN Interrogation Technique software',
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Environment :: Console'],
author='J Timmermans',
author_email='j.timmermans@ucl.ac.uk',
url='http://github.com/JorisTimmermans/modtran_wrapper',
packages=['modtran_wrapper'],
)