forked from brynpickering/friendly-calliope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (22 loc) · 811 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
#!/usr/bin/env python3
from pathlib import Path
from setuptools import setup, find_packages
requirements = Path("requirements.txt").read_text().strip().split("\n")
setup(
name='friendly-calliope',
version='0.2.0',
description='Toolkit to prepare Calliope output data for dumping to friendly-data.',
maintainer='Bryn Pickering',
maintainer_email='[email protected]',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
install_requires=requirements,
classifiers=[
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering'
]
)