-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (35 loc) · 1.1 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
import sys
try:
from setuptools import setup
have_setuptools = True
except ImportError:
from distutils.core import setup
have_setuptools = False
def setup_gadfly():
setup(
name='gadfly',
version='0.1',
description='Toolkit for analyzing Gadget SPH using pandas dataframes',
author='Jacob Hummel',
author_email='[email protected]',
url='http://www.as.utexas.edu/~jhummel/',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: MIT License',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics'
],
# zip_safe=False,
packages=['gadfly'], # ['gadfly', 'gadfly.more'],
package_dir={
'gadfly' : 'gadfly',
# 'gadfly.more' : 'gadfly/more',
},
)
return
if __name__ == '__main__':
setup_gadfly()