-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 923 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
38
from pathlib import Path
from setuptools import find_packages, setup
import hellopy
readme = Path(__file__).with_name('README.md').read_text()
classifiers = [
'Environment :: Console',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
setup(
name='hellopy',
version=hellopy.__version__,
description='Hello, Python!',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/xymy/hellopy',
author='xymy',
author_email='[email protected]',
classifiers=classifiers,
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'hellopy = hellopy.hellopy:main'
]
},
install_requires=[
'click>=7.0',
'colorama>=0.4.0; sys_platform == "win32"'
],
python_requires='>=3.6'
)