Skip to content

Commit

Permalink
initial project config
Browse files Browse the repository at this point in the history
  • Loading branch information
Álvaro Bartolomé del Canto committed Aug 21, 2019
1 parent dfd2919 commit 69c4aca
Show file tree
Hide file tree
Showing 12 changed files with 332 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/trendet.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

254 changes: 254 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.md
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# trendet
[Development] trendet is Python tool for trend detection on time series
# trendet - Python package for trend detection on stock time series
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
39 changes: 39 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#!/usr/bin/env python

from setuptools import setup, find_packages
import io


def readme():
with io.open('README.md', encoding='utf-8') as f:
return f.read()


setup(
name='trendet',
version='0.1',
packages=find_packages(),
url='https://github.com/alvarob96/trendet',
download_url='https://github.com/alvarob96/trendet/archive/0.1.tar.gz',
license='MIT License',
author='Alvaro Bartolome',
author_email='alvarob96@usal.es',
description='trendet - Python package for trend detection on stock time series',
long_description=readme(),
long_description_content_type='text/markdown',
install_requires=[],
data_files=[],
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
],
keywords='trend detection, stock analysis, stock, trend analysis'
)
Empty file added tests/__init__.py
Empty file.
Empty file added trendet/__init__.py
Empty file.

0 comments on commit 69c4aca

Please sign in to comment.