Skip to content

Commit

Permalink
Setup: Initialised
Browse files Browse the repository at this point in the history
  • Loading branch information
manrajgrover committed Sep 24, 2017
1 parent 54b895f commit b361721
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
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
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from setuptools import setup, find_packages # pylint: disable=no-name-in-module,import-error

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

def dependencies(file):
with open(file) as f:
return f.read().splitlines()

setup(
name='halo',
packages=find_packages(exclude=('tests', 'examples')),
version='0.0.1',
license='MIT',
description='Beautiful terminal spinners in Python',
long_description=readme(),
author='Manraj Singh',
author_email='[email protected]',
url='https://github.com/ManrajGrover/halo',
keywords=[],
install_requires=dependencies('requirements.txt'),
tests_require=dependencies('requirements-dev.txt'),
include_package_data=True
)

0 comments on commit b361721

Please sign in to comment.