-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 989 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
try:
from setuptools import setup
setup
except ImportError:
from distutils.core import setup
setup
exec(open('k2gap/version.py').read())
with open('README.md') as f:
long_description = f.read()
setup(
name='k2gap',
version=__version__,
description='A module for the K2GAP target selection function',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/sanjibs/k2gap',
author='Sanjib Sharma',
author_email='[email protected]',
license='New BSD',
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.7',
],
install_requires=['numpy'],
packages=['k2gap'],
package_data={'k2gap':['k2circles.json'],'': ['AUTHORS.rst','README.md','LICENSE']},
)