-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
47 lines (38 loc) · 1.34 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='Deft',
version='0.3.0',
description='Easy Distributed Feature Tracking',
long_description=read("README.rst"),
author='Nat Pryce',
author_email='[email protected]',
url='http://github.com/npryce/deft',
license="GPL3",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Natural Language :: English',
'Topic :: Software Development :: Bug Tracking',
'Topic :: Utilities'],
platforms=['any'],
provides=['deft'],
packages=['deft', 'deft.storage', 'deft.history', 'deft.systests', 'deft.web'],
package_dir = {'': 'src'},
scripts=['bin/deft', 'bin/deft-cfd', 'bin/deft-web'],
requires=[
'yaml (==3.10)',
'argparse (==1.2)',
'functional (==0.4)',
'dulwich (==0.7.1)',
'tornado (==2.0)',
'Markdown (==2.03)'],
test_requires=[
'nose (1.0.0)',
'hamcrest (1.5)'],
test_suite='nose.collector')