-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (35 loc) · 1.03 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
40
41
42
43
44
45
46
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='enveloop',
version='0.1.0',
description='Various utility for handling loops, recursions, etc.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/arrrlo/enveloop.git',
licence='MIT',
author='Ivan Arar',
author_email='ivan.arar@gmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
keywords='loop, recursion, infinite-loop',
packages=find_packages(),
install_requires=[
'click~=7.0',
],
project_urls={
'Source': 'https://github.com/arrrlo/enveloop.git',
},
entry_points={
'console_scripts': [
'enveloop=enveloop.cli:cli'
],
},
)