Fixes package structure

This commit is contained in:
Patrick McDonagh
2017-04-05 11:26:31 -05:00
parent 812c82deb2
commit 27dee5e9cf
16 changed files with 118 additions and 50 deletions

View File

@@ -1,49 +0,0 @@
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',
],
},
)