-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.13 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.13 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
from setuptools import setup
with open('README.md', 'r') as in_file:
readme = in_file.read()
setup(
name='occamtools',
packages=['occamtools'],
url='https://github.com/mortele/OccamTools',
license='GPL-3',
description='Analysis and synthesis tools for OCCAM hPF simulations',
long_description=readme,
long_description_content_type='text/markdown',
tags=['occammd', 'hpf', 'md'],
author='Morten Ledum',
author_email='morten.ledum@gmail.com',
install_requires=[
'pytest>=4.3.0',
'pytest-cov>=2.6.1',
'numpy>=1.16.1',
'flake8>=3.7.7',
'coverage>=4.5.2',
'tqdm>=4.31.1'
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
python_requires='>=3.6',
use_scm_version=True,
setup_requires=['setuptools_scm']
)