-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1023 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
import setuptools
def readfile(filename):
with open(filename, 'r+') as f:
return f.read()
setuptools.setup(
name='Octagon',
version='1.0.8',
description='How can I find an octagon? How, Elmo? How?',
long_description=readfile('README.md'),
long_description_content_type="text/markdown",
author='Cloud11665',
author_email='Cloud11665@gmail.com',
url='https://github.com/Cloud11665/octagon',
packages=setuptools.find_packages(),
install_requires=[
'click==7.1.2',
'numpy==1.19.1',
'opencv-python==4.4.0.42'
],
license='gpl-3.0',
entry_points={
'console_scripts': ['octagon = Octagon.__init__:main']
},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent"
],
python_requires='>=3.6'
)