-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (36 loc) · 1.14 KB
/
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
38
39
import re
from setuptools import setup
with open('leezy/__main__.py', encoding='utf8') as f:
VERSION = re.findall(
r'VERSION\s*=\s*[\'\"]([\.\d]+)[\'\"]\s*$',
f.read(), re.MULTILINE)[0]
with open("README.md", 'r', encoding='utf8') as f:
long_description = f.read()
setup(
name='leezy',
version=VERSION,
description='leezy: leetcode helper for the lazy',
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
author='aptend',
author_email='[email protected]',
url='https://github.com/aptend/leezy',
entry_points={
'console_scripts': [
'leezy = leezy.__main__:dummy_main'
]
},
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Text Processing',
'Topic :: Utilities'
],
packages=['leezy'],
install_requires=['requests>=2.18.0', 'pytest>=5.1.3'],
python_requires='>=3.6'
)