forked from reilleya/openMotor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 681 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
from uilib.fileIO import appVersionStr
try:
from pyqt_distutils.build_ui import build_ui
cmdclass = {'build_ui': build_ui}
except ImportError:
print('pyqt_distutils not found, build_ui command will be unavailable')
build_ui = None # user won't have pyqt_distutils when deploying
cmdclass = {}
setup(
name='openMotor',
version=appVersionStr,
license='GPLv3',
packages=find_packages(),
url='https://github.com/reilleya/openMotor',
description='An open-source internal ballistics simulator for rocket motor experimenters',
long_description=open('README.md').read(),
cmdclass=cmdclass
)