-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (30 loc) · 1018 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
33
34
35
#! /usr/bin/python
"""Setuptools-based setup script for datreant.
For a basic installation just type the command::
python setup.py install
"""
from setuptools import setup, find_packages
setup(name='datreant.remote',
version='0.8.0-dev',
description='Treants on remote machines',
author='Joy Monteiro',
author_email='',
url = 'http://datreant.org/',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages('src'),
namespace_packages=['datreant'],
package_dir={'': 'src'},
scripts=[],
license='BSD',
long_description=open('README.rst').read(),
install_requires=[]
)