-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
35 lines (32 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
#from distutils.core import setup
from setuptools import setup
from os import path
from codecs import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(name='horusner',
version='0.1.5',
long_description=long_description,
license='Apache License 2.0',
description='HORUS Framework',
keywords='nlp metadata microblog ner twitter named-entity-recognition noisy entity',
author='Diego Esteves',
author_email='diegoesteves@gmail.com',
url='http://diegoesteves.github.io/horus-models/',
include_package_data=True,
zip_safe=False,
package_dir={'horus': 'src/core'},
packages=['horus.util',
'horus.translation',
'horusner.feature_extraction',
'horusner.feature_extraction.object_detection',
'horusner.feature_extraction.text_classification'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
],
)
#install_requires=[
#'markdown',
# ],