-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (43 loc) · 1.24 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
47
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
import emanual
with open('README.md') as f:
long_description = f.read()
setup(
name='emanual',
version=emanual.__version__,
description=emanual.__doc__.strip(),
long_description=long_description,
url='https://github.com/EManual/EManual-CLI',
author=emanual.__author__,
author_email='[email protected]',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=[
'click',
'path.py',
'pypinyin',
'mistune',
'beautifulsoup4'
],
entry_points={
'console_scripts' : [
'emanual=emanual.cli:main',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
],
keywords='emanual cli',
)