mirror of https://github.com/pallets/flask.git
16 lines
262 B
Python
16 lines
262 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='minitwit',
|
||
|
packages=['minitwit'],
|
||
|
include_package_data=True,
|
||
|
install_requires=[
|
||
|
'flask',
|
||
|
],
|
||
|
setup_requires=[
|
||
|
'pytest-runner',
|
||
|
],
|
||
|
tests_require=[
|
||
|
'pytest',
|
||
|
],
|
||
|
)
|