-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 767 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (23 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name='astro-refine',
version='0.1.0',
description='Astro Refine',
url='https://github.com/xinyuesheng/astro-refine',
author='Xinyue Sheng',
author_email='xsheng03@qub.ac.uk',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)