-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
72 lines (69 loc) · 2.43 KB
/
setup.py
File metadata and controls
72 lines (69 loc) · 2.43 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python
# coding=utf-8
#
# to build:
# python setup.py sdist bdist_wheel
#
from setuptools import setup, find_packages
setup(
name='a3cosmos_gas_evolution',
version='2.2.1',
description=(
'A Python Package for Galaxy Cold Molecular Gas and Star Formation Evolution Equations.'
),
keywords="a3cosmos galaxy molecular gas dust star formation SFR evolution equation parametrization",
long_description=open('README.rst').read(),
author='A3COSMOS Team',
author_email='dzliu@pmo.ac.cn',
maintainer='A3COSMOS Team',
maintainer_email='dzliu@pmo.ac.cn',
license='BSD License',
packages=find_packages(),
platforms=["all"],
url='https://sites.google.com/view/a3cosmos',
project_urls={
#"Bug Tracker": "",
"Documentation": "https://sites.google.com/view/a3cosmos/code/code-a3cosmos-gas-evolution",
"Source Code": "https://github.com/1054/a3cosmos-gas-evolution",
},
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Scientific/Engineering :: Astronomy',
],
install_requires=[
'numpy',
'astropy',
'scipy',
'matplotlib',
'packaging',
'pytest',
'looseversion; python_version>"3.10"',
'funcsigs; python_version<"3.0"',
],
test_suite='tests',
include_package_data=True,
#package_data={
# 'project': ['default_data.json', 'other_datas/default/*.json']
#},
#data_files=
)