50 lines
1.1 KiB
Python
50 lines
1.1 KiB
Python
import os
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
|
with open(os.path.join(here, 'README.md')) as f:
|
|
README = f.read()
|
|
with open(os.path.join(here, 'CHANGES.md')) as f:
|
|
CHANGES = f.read()
|
|
|
|
requires = [
|
|
'pymongo',
|
|
'pycomm',
|
|
'pycomm_helper',
|
|
]
|
|
|
|
tests_require = [
|
|
'pytest',
|
|
]
|
|
|
|
setup(
|
|
name='poc_scraper',
|
|
version='0.0',
|
|
description='Modbus TCP Server for Henry POC',
|
|
long_description=README + '\n\n' + CHANGES,
|
|
classifiers=[
|
|
'Programming Language :: Python',
|
|
'Framework :: Pyramid',
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
|
|
],
|
|
dependency_links=['https://github.com/Henry-Pump/Pycomm-Helper/tarball/master#egg=pycomm_helper'],
|
|
author='',
|
|
author_email='',
|
|
url='',
|
|
keywords='web',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
extras_require={
|
|
'testing': tests_require,
|
|
},
|
|
install_requires=requires,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'poc_scraper = poc_scraper:main',
|
|
],
|
|
},
|
|
)
|