Skip to content
Snippets Groups Projects
Commit c23fe9d7 authored by Greg Quinn's avatar Greg Quinn
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
/local
/InterCal.egg-info
*.pyc
.*.swp
from unittest import TestCase
class NewProjectE2eTest(TestCase):
def test_works(self):
pass
setup.py 0 → 100644
from setuptools import setup, find_packages
def run_setup():
setup(name='InterCal',
version='DEV',
packages=find_packages(),
install_requires=['nose', 'numpy', 'pyhdf'],
zip_safe=False)
if __name__ == '__main__':
run_setup()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment