Skip to content

Commit

Permalink
set setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
scrat-online committed May 11, 2017
1 parent f63d493 commit bf483f5
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
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.

29 changes: 29 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
"""
Project:
File: setup
Created by Scrat on 11.05.2017
"""

# -*- coding: utf-8 -*-

from setuptools import setup, find_packages


with open('README.md') as f:
readme = f.read()

with open('LICENSE') as f:
license = f.read()

setup(
name='pySTARMA',
version='0.1.0',
description='todo',
long_description=readme,
author='Andreas Wolf',
author_email='andreas.wolf.ke@gmail.com',
url='https://github.com/scrat-online/pySTARMA.git',
license=license,
packages=find_packages()
)

0 comments on commit bf483f5

Please sign in to comment.