-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
49 lines (42 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
import os
import re
import setuptools
directory = os.path.dirname(os.path.abspath(__file__))
# Extract version information
# path = os.path.join(directory, 'axcell', '__init__.py')
# with open(path) as read_file:
# text = read_file.read()
# pattern = re.compile(r"^__version__ = ['\"]([^'\"]*)['\"]", re.MULTILINE)
# version = pattern.search(text).group(1)
version="1.0.0"
# # Extract long_description
# path = os.path.join(directory, 'README.md')
# with open(path) as read_file:
# long_description = read_file.read()
long_description = ""
setuptools.setup(
name='axcell',
version=version,
url='https://github.com/paperswithcode/axcell',
description='System for extracting machine learning results from arxiv papers',
author='Papers with Code',
# long_description_content_type='text/markdown',
# long_description=long_description,
license='Apache License 2.0',
packages=setuptools.find_packages(),
include_package_data=True,
keywords='machine-learning ai information-extraction weak-supervision',
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
],
project_urls={ # Optional
'Homepage': 'https://github.com/paperswithcode/axcell',
'Source': 'https://github.com/paperswithcode/axcell',
'Citation': 'https://arxiv.org/abs/2004.14356',
},
)