mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
* Write some more metadata in setup.py
This commit is contained in:
parent
a24321b63a
commit
d48f90fbab
12
setup.py
12
setup.py
|
@ -85,15 +85,15 @@ if sys.argv[1] == 'clean':
|
|||
|
||||
distutils.core.setup(
|
||||
name='spacy',
|
||||
packages=['spacy'],
|
||||
packages=['spacy', 'spacy.en', 'spacy.syntax'],
|
||||
description="Industrial-strength NLP",
|
||||
author='Matthew Honnibal',
|
||||
author_email='honnibal@gmail.com',
|
||||
version='1.0',
|
||||
package_data={"spacy": ["*.pxd"]},
|
||||
url="http://honnibal.github.io/spaCy/",
|
||||
package_data={"spacy": ["*.pxd"], "spacy.en": ["*.pxd", "data/*", "data/*/*"],
|
||||
"spacy.syntax": ["*.pxd"]},
|
||||
cmdclass={'build_ext': Cython.Distutils.build_ext},
|
||||
|
||||
ext_modules=exts,
|
||||
license="Dual: Commercial or AGPL. Contributions subject to contributor agreement."
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user