Skip to content

Commit 4c0ec78

Browse files
committed
Add setup.py
1 parent ea76aba commit 4c0ec78

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

setup.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from distutils.core import setup
2+
3+
setup(
4+
name='package_template',
5+
version='0.1',
6+
description='A simple example of a Python package',
7+
author='Computational Modelling Group',
8+
author_email='[email protected]',
9+
packages=['package_template', 'package_template.tests'],
10+
classifiers=[
11+
'License :: OSI Approved :: BSD License',
12+
'Programming Language :: Python :: 2.7',
13+
'Programming Language :: Python :: 3',
14+
]
15+
)

0 commit comments

Comments
 (0)