-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 1.1 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
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
setup(
name = "Helmholtz",
version = "0.3.0dev",
packages = find_packages(),
package_data = {},
author = "Neuroinformatics research group, UNIC, CNRS",
author_email = "[email protected]",
description = "A framework for creating neuroscience databases",
long_description = """LONG DESCRIPTION GOES HERE""",
license = "CeCILL http://www.cecill.info",
keywords = "neuroscience database Django metadata",
url = "http://www.dbunic.cnrs-gif.fr/helmholtz/",
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Scientific/Engineering',
'Topic :: Database'],
)