-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
19 lines (17 loc) · 939 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import setuptools
with open('README.md', 'r') as d:
long_description = d.read()
setuptools.setup(name='GaiaLab',
version='0.2.0',
author='Alex Bombrun, Maria del Valle Varo, Toby James, Luca Zampieri',
author_email='[email protected]',
description='Toy model for the Gaia scanning law and '
'micrometeoroid detection and simulation '
'functions for Gaia data.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/bombrun/GaiaLab',
packages=setuptools.find_packages(),
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"])