-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (28 loc) · 998 Bytes
/
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
from setuptools import setup, find_packages
with open("Readme.md", "r") as file:
long_description = file.read()
setup(
name="mentions_pipeline_notebook",
version="0.0.1",
author="Patrice Lopez",
author_email="[email protected]",
description="Python notebooks illustrating software mention extraction pipelines",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/softcite/mentions_pipeline_notebook",
packages=find_packages(exclude=['test', '*.test', '*.test.*']),
include_package_data=True,
python_requires='>=3.8',
install_requires=[
'article_dataset_builder==0.2.3',
'software_mentions_client==0.1.0',
'tqdm==4.21',
'requests',
'jupyter',
],
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)