-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·32 lines (31 loc) · 990 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
from setuptools import setup,find_packages
setup(
name='slrfield',
version='0.2.1',
description='A package to handle the SLR(Satellite Laser Ranging) data',
author='Chunxiao Li',
author_email='lcx366@126.com',
url='https://github.com/lcx366/SLRfield',
license='MIT',
long_description_content_type='text/markdown',
long_description=open('README.md', 'rb').read().decode('utf-8'),
keywords=['SLR','CPF'],
python_requires='>=3.8',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(),
include_package_data=True,
install_requires=[
'scipy',
'numpy>=1.21.2',
'astropy>=4.3.1',
'wget',
'beautifulsoup4'
],
)