forked from openworm/owmeta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 1.02 KB
/
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
# -*- coding: utf-8 -*-
from distutils.core import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
long_description = open("README.md").read()
setup(
#data_files=[("",['neuroml/test/Purk2M9s.nml'])],
install_requires=required,
name = "PyOpenWorm",
version = '0.0.1',
packages = ['PyOpenWorm', 'tests'],
#package_data = {'neuroml.test': ['*.nml']},
author = "OpenWorm.org authors and contributors",
author_email = "[email protected]",
description = "A Python library for working with OpenWorm data and models",
long_description = long_description,
license = "BSD",
url="http://PyOpenWorm.readthedocs.org/en/latest/",
classifiers = [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering']
)