-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (25 loc) · 853 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
import setuptools
import os
version = {}
with open(os.path.join(*['pbjam','version.py'])) as fp:
exec(fp.read(), version)
setuptools.setup(
name="pbjam",
version=version['__version__'],
author="Martin Nielsen, Guy Davies, Oliver Hall",
author_email="[email protected]",
description="A package for peakbagging solar-like oscillators",
long_description=open("README.rst").read(),
url="https://pbjam.readthedocs.io/",
packages=['pbjam'],
install_requires=open('requirements.txt').read().splitlines(),
extras_require={'docs': ["nbsphinx"]},
include_package_data=True,
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha"
],
)