-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (26 loc) · 809 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
29
30
31
import setuptools
from pathlib import Path
with open('README.md', 'r') as fh:
long_description = fh.read()
def load_req(path):
reqs = Path(path).read_text().split('\n')
reqs = [x.strip() for x in reqs]
return [x for x in reqs if len(x) > 0]
setuptools.setup(
name='bsts',
version='0.1',
author='Bati Sengul',
description='Python library for Bayesian structural time series',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Focus/bsts',
packages=setuptools.find_packages(
include=['bsts', 'bsts.*'],
),
classifiers=[
'Programming Language :: Python :: 3',
],
python_requires='>=3.5',
install_requires=load_req('requirements.in'),
include_package_data=True,
)