Changed to cvpubsubs. Initialized hatch.
This commit is contained in:
65
setup.py
65
setup.py
@ -1,23 +1,52 @@
|
||||
from distutils.core import setup
|
||||
from setuptools import find_packages
|
||||
from io import open
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
with open('cvpubsubs/__init__.py', 'r') as f:
|
||||
for line in f:
|
||||
if line.startswith('__version__'):
|
||||
version = line.strip().split('=')[1].strip(' \'"')
|
||||
break
|
||||
else:
|
||||
version = '0.0.1'
|
||||
|
||||
with open('README.md', 'r', encoding='utf-8') as f:
|
||||
readme = f.read()
|
||||
|
||||
REQUIRES = []
|
||||
|
||||
setup(
|
||||
name= 'cv_pubsubs',
|
||||
version='1.0.0',
|
||||
packages = find_packages(),
|
||||
description='Pubsub interface for Python OpenCV',
|
||||
author='Josh Miklos',
|
||||
author_email='simulatorleek@gmail.com',
|
||||
url='https://github.com/SimLeek/cv_pubsubs',
|
||||
download_url='https://github.com/SimLeek/cv_pubsubs/archive/0.1.tar.gz',
|
||||
keywords=['OpenCV', 'PubSub'],
|
||||
license='MIT',
|
||||
name='CVPubSubs',
|
||||
version=version,
|
||||
description='',
|
||||
long_description=readme,
|
||||
author='SimLeek',
|
||||
author_email='josh.miklos@gmail.com',
|
||||
maintainer='SimLeek',
|
||||
maintainer_email='josh.miklos@gmail.com',
|
||||
url='https://github.com/_/CVPubSubs',
|
||||
license='MIT/Apache-2.0',
|
||||
|
||||
keywords=[
|
||||
'',
|
||||
],
|
||||
|
||||
classifiers=[
|
||||
'Development Status :: 3 - Alpha',
|
||||
'Development Status :: 4 - Beta',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 2',
|
||||
'License :: OSI Approved :: Apache Software License',
|
||||
'Natural Language :: English',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
]
|
||||
)
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: Implementation :: CPython',
|
||||
'Programming Language :: Python :: Implementation :: PyPy',
|
||||
],
|
||||
|
||||
install_requires=REQUIRES,
|
||||
tests_require=['coverage', 'pytest'],
|
||||
|
||||
packages=find_packages(),
|
||||
)
|
||||
|
Reference in New Issue
Block a user