-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (20 loc) · 927 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
#!/usr/bin/env python
from distutils.core import setup, Extension
setup(name = 'suvat',
version = '0.2',
description = 'A simple GUI to solve equations of motion under '
'constant acceleration',
long_description = 'suvat uses the equations of motion with '
'constant acceleration to find the values of displacement, '
'initial velocity, final velocity, acceleration and time, '
'given three of them',
author = 'Josh Holland',
author_email = '[email protected]',
packages = ['suvatlib'],
scripts = ['suvat'],
ext_modules = [Extension('suvatext', sources = ['suvatlib/suvatext.c'])],
requires = ['pygtk (>= 2.0)', 'gtk'],
license = 'GPL-3',
data_files = [('share/man/man1', ['doc/suvat.1.gz']),
('share/applications', ['data/suvat.desktop'])],
url = 'https://launchpad.net/suvat')