-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (33 loc) · 1.07 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
'''
Python interface to cpropep
'''
from setuptools import setup
setup(
name="pypropep",
version='0.1.4',
description='Python wrapper for cpropep rocket performance tool',
license='GPLv3',
author='Jonny Dyer',
author_email='[email protected]',
url='https://github.com/jonnydyer/pypropep',
packages=['pypropep', 'pypropep.cpropep'],
package_data={"pypropep" : ["data/*.dat"]},
setup_requires=["cffi>=1.0.0"],
cffi_modules=["cpropep_build.py:ffibuilder"],
install_requires=["cffi>=1.0.0", "attrdict"],
py_modules=['cpropep_build'],
)
# from distutils.core import setup
# import cpropep_build
#
# setup(name='pypropep',
# version='0.1',
# description='Python wrapper for cpropep rocket performance tool',
# license='GPLv3',
# author='Jonny Dyer',
# author_email='[email protected]',
# packages=['pypropep', 'pypropep.cpropep'],
# package_data={"pypropep" : ["data/*.dat"]},
# py_modules=['cpropep_build'],
# ext_modules=[cpropep_build.ffibuilder.distutils_extension()]
# )