Skip to content

Commit

Permalink
Add package install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
maxjcohen committed Jan 4, 2020
1 parent 06adfda commit 3ec50ad
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="tst",
version="0.1.0",
author="Max Cohen",
author_email="[email protected]",
description="Time Series Transformer",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://timeseriestransformer.readthedocs.io/",
packages=['tst'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)
1 change: 1 addition & 0 deletions tst/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .Transformer import Transformer

0 comments on commit 3ec50ad

Please sign in to comment.