-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.25 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pcu_nlp",
version="1.2",
author="Stella Zevio",
author_email="[email protected]",
maintainer="Stella Zevio",
maintainer_email="[email protected]",
description="NLP pipeline component (spacy.io) for PCU project",
license="GNU General Public License v3 or later (GPLv3+)",
platforms="Any",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zevio/pcu_nlp",
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Natural Language :: English',
'Natural Language :: French',
'Programming Language :: Python :: 3'
],
python_requires='>=3'
)