-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 797 Bytes
/
setup.py
File metadata and controls
32 lines (26 loc) · 797 Bytes
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='pythonapp',
version='0.0.1',
description='Example Python application with test suite',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
keywords='python example test',
license='MIT',
packages=['pythonapp'],
install_requires=[
'termcolor',
],
test_suite='tests',
tests_require=['xmlrunner'],
entry_points={
'console_scripts': ['pythonapp-msg=pythonapp.command_line:main'],
},
include_package_data=True,
zip_safe=False)