Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions setup.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
#!/usr/bin/env python

import os

from distutils.core import setup

import spc
ver_file = os.path.join('spc', '_version.py')
with open(ver_file) as f:
exec(f.read())

setup(name='spc',
version=spc.__version__,
description=spc.__doc__,
author=spc.__author__,
author_email=spc.__author_email__,
version=__version__,
description=__doc__,
author=__author__,
author_email=__author_email__,
url='https://github.com/rohanisaac/spc',
packages=['spc'],
install_requires=['numpy'],
Expand Down
5 changes: 0 additions & 5 deletions spc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,3 @@
"""

from .spc import File

__author__ = "Rohan Isaac"
__author_email__ = "rohan_isaac@yahoo.com"
__version__ = "0.4.0"
__license__ = "GPLv3"
4 changes: 4 additions & 0 deletions spc/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
__author__ = "Rohan Isaac"
__author_email__ = "rohan_isaac@yahoo.com"
__version__ = "0.4.0"
__license__ = "GPLv3"