Skip to content

Commit 2830bc9

Browse files
committed
Minor fix in __init__ and setup
1 parent 78ac89e commit 2830bc9

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

pln/__init__.py

+7
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
11
from .core import Pipeline, Watch, shift
2+
3+
4+
__title__ = 'pln'
5+
__version__ = '0.0.1'
6+
__author__ = 'Taurus Olson'
7+
__license__ = 'MIT'
8+
__email__ = '[email protected]'

setup.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from codecs import open as codecs_open
2-
from setuptools import setup, find_packages
2+
from setuptools import setup
3+
import pln
34

45

56
# Get the long description from the relevant file
@@ -8,15 +9,15 @@
89

910

1011
setup(name='pln',
11-
version='0.0.1',
12-
description=u"A library to apply successive operations on your data.",
12+
version=pln.__version__,
13+
description='A library to apply successive operations on your data.',
1314
long_description=long_description,
1415
classifiers=[],
1516
keywords='',
16-
author=u"Taurus Olson",
17-
author_email='[email protected]',
17+
author=pln.__author__,
18+
author_email=pln.__email__,
1819
url='https://github.com/TaurusOlson/pln',
19-
license='MIT',
20+
license=pln.__version__,
2021
packages=['pln'],
2122
include_package_data=True,
2223
zip_safe=False

0 commit comments

Comments
 (0)