copied from internal repo
This commit is contained in:
20
setup.py
Normal file
20
setup.py
Normal file
@@ -0,0 +1,20 @@
|
||||
from setuptools import setup, find_packages
|
||||
setup(
|
||||
name='conpeek_setup',
|
||||
version='0.1.0',
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
description='Conpeek Setup',
|
||||
classifiers=[
|
||||
'Programming Language :: Python :: 3',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Operating System :: OS Independent',
|
||||
],
|
||||
python_requires='>=3.6',
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'conpeek_setup=conpeek_setup.main:main',
|
||||
],
|
||||
},
|
||||
install_requires=['']
|
||||
)
|
||||
Reference in New Issue
Block a user