-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
39 lines (37 loc) · 1.48 KB
/
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
33
34
35
36
37
38
39
from distutils.core import setup
from setuptools import find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open('corecon/version.py') as fh:
exec(fh.read())
setup(
name = 'corecon',
packages = find_packages(exclude=["docs"]),
version = __version__,
license='gpl-3.0',
description = 'an open collection of constraints on the Epoch of Reionization',
long_description=long_description,
author = 'Enrico Garaldi',
author_email = 'enrico.garaldi@gmail.com',
url = 'https://github.com/EGaraldi/corecon',
download_url = 'https://github.com/EGaraldi/corecon/archive/v'+__version__+'.tar.gz',
keywords = ['constraints', 'reionization', 'cosmic', 'observations', 'data'],
install_requires=['numpy'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'Topic :: Scientific/Engineering :: Astronomy',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'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'
],
)