-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (35 loc) · 1.11 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
import sys
from setuptools import setup, find_packages
from codecs import open
from os import path
root_dir = path.abspath(path.dirname(__file__))
with open('README.md', encoding='utf-8') as readme_file:
readme = readme_file.read()
info = sys.version_info
def _requirements():
return [name.rstrip() for name in open(path.join(root_dir, 'requirements.txt')).readlines()]
setup(
name='jel',
version='0.1.3',
description='Japanese Entity Linker.',
long_description=readme,
long_description_content_type='text/markdown',
author='izuna385',
author_email='[email protected]',
url='https://github.com/izuna385/jel',
packages=find_packages(),
include_package_data=True,
keywords='jel',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Natural Language :: English',
"License :: OSI Approved :: Apache Software License",
'Programming Language :: Python :: 3.7',
"Operating System :: OS Independent",
],
install_requires=_requirements(),
test_suite="test",
)