forked from alchemistry/alchemtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (26 loc) · 875 Bytes
/
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
32
#! /usr/bin/python
"""Setuptools-based setup script for alchemtest.
For a basic installation just type the command::
python setup.py install
"""
from setuptools import setup, find_packages
import versioneer
setup(name='alchemtest',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='the simple alchemistry test set',
author='David Dotson',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
packages=find_packages('src'),
package_dir={'': 'src'},
license='BSD',
long_description=open('README.rst').read(),
include_package_data=True,
)