-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 694 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""Setup KEP.py"""
from codecs import open
from os import path
from setuptools import setup, find_packages
HERE = path.dirname(path.realpath(__file__))
with open(path.join(HERE, 'README.md'), encoding='utf-8') as readme:
LONG_DESCRIPTION = readme.read()
setup(
name='keppy',
version='0.0.9',
install_requires=['Enum34'],
description='A Python parser of Kepware projects',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/jmbeach/KEP.py',
author='jmbeach',
author_email='jaredbeachdesign@gmail.com',
keywords='kepware parser',
packages=find_packages('src'),
package_dir={'': 'src'}
)