-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 849 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 849 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
25
26
from setuptools import setup, find_packages
setup(
name='pycontbin',
version='0.3.0',
description='A Python implementation of the ContBin algorithm',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/jpbreuer/contbin_python',
author='Jean-Paul Breuer',
author_email='jeanpaul.breuer@gmail.com',
license='GNU General Public License v3 (GPLv3)',
packages=['pycontbin'],
install_requires=['numpy',
'astropy',
'pyds9',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
],
python_requires='>=3.6'
)