forked from kadrlica/dsphsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 996 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
23
24
25
26
27
28
29
30
31
32
33
34
35
import sys
import os
try: from setuptools import setup
except ImportError: from distutils.core import setup
import versioneer
here = os.path.abspath(os.path.dirname(__file__))
def read(filename):
return open(os.path.join(here,filename)).read()
setup(
name='dsphsim',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url='https://github.com/kadrlica/dsphsim',
author='Alex Drlica-Wagner',
author_email='[email protected]',
scripts = ['bin/dsphsim'],
install_requires=[
'python >= 2.7.0',
],
packages=['dsphsim'],
package_data={'dsphsim':['data/*.dat']}
description="Simple automated interface to scientific wiki tools.",
long_description=read('README.md'),
platforms='any',
keywords='astronomy',
classifiers = [
'Programming Language :: Python',
'Development Status :: 2 - Pre-Alpha',
'Natural Language :: English',
'Intended Audience :: Science/Research',
]
)