Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
statefb committed Dec 30, 2022
1 parent cb4c35d commit a785250
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 34 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/test.yml

This file was deleted.

23 changes: 11 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
# -*- coding: utf-8 -*-
import os
from setuptools import setup
from setuptools import find_packages

from setuptools import find_packages, setup

# meta info
NAME = "dtwalign"
VERSION = "0.1.0"
VERSION = "0.1.1"
AUTHOR = "Takehiro Suzuki"
AUTHOR_EMAIL = ""
URL = "https://github.com/statefb/dtwalign"
DESCRIPTION = 'Comprehensive DTW package which enables partial mathing and has various constraint options'
DESCRIPTION = "Comprehensive DTW package which enables partial mathing and has various constraint options"
LICENSE = "MIT"

if not os.path.exists('README.txt'):
if not os.path.exists("README.txt"):
os.system("pandoc -o README.txt README.md")
LONG_DESCRIPTION = open('README.txt').read()
LONG_DESCRIPTION = open("README.txt").read()


def main():
setup(
Expand All @@ -34,11 +35,9 @@ def main():
"seaborn >= 0.8.1",
"networkx",
"numba >= 0.34.0",
"scipy"
],
dependency_links=[

"scipy",
],
dependency_links=[],
tests_require=[
"rpy2",
],
Expand All @@ -49,9 +48,9 @@ def main():
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
]
],
)


if __name__ == '__main__':
if __name__ == "__main__":
main()
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rpy2
rpy2==3.5.6

0 comments on commit a785250

Please sign in to comment.