-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
33 lines (30 loc) · 888 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
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '1.0.2'
with open("./README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="Hallo",
version=version,
url='https://github.com/oldjun/hallo',
author='JP Chen',
author_email='[email protected]',
description='web mvc framework for python',
long_description=readme,
long_description_content_type='text/markdown',
python_requires=">=3.6",
install_requires=[
],
license="MIT",
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
entry_points={
'console_scripts': ['hallo=hallo.__main__:main'],
},
include_package_data=True
)