-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (47 loc) · 1.31 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
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
name='word2vec_wikification_py'
version='0.17'
description='A package to run wikification'
author='Kensuke Mitsuzawa'
author_email='[email protected]'
url='https://github.com/Kensuke-Mitsuzawa/word2vec_wikification_py'
license_name='MIT'
install_requires = [
'gensim',
'pymysql',
'typing'
]
dependency_links = [
]
short_description = ''
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Natural Language :: Japanese",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.5"
]
setup(
name=name,
version=version,
description=description,
long_description=long_description,
author=author,
install_requires=install_requires,
dependency_links=dependency_links,
author_email=author_email,
url=url,
license=license_name,
packages=find_packages(),
classifiers=classifiers,
test_suite='tests',
include_package_data=True,
zip_safe=False
)