forked from MoseleyBioinformaticsLab/academic_tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
78 lines (67 loc) · 2.35 KB
/
setup.py
File metadata and controls
78 lines (67 loc) · 2.35 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import sys
import re
from setuptools import setup, find_packages
if sys.argv[-1] == 'publish':
os.system('python3 setup.py sdist')
os.system('twine upload dist/*')
sys.exit()
def readme():
with open('README.rst') as readme_file:
return readme_file.read()
def find_version():
with open('src/academic_tracker/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
if not version:
raise RuntimeError('Cannot find version information')
return version
REQUIRES = [
"docopt >= 0.6.2",
"pymed >= 0.8.9",
"jsonschema >= 4.4.0",
"habanero >= 1.0.0",
"orcid >= 1.0.3",
"scholarly >= 1.4.5",
"beautifulsoup4 >= 4.9.3",
"fuzzywuzzy >= 0.18.0",
"python-docx >= 0.8.11",
"pandas >= 0.24.2",
"openpyxl >= 2.6.2",
"requests >= 2.21.0",
"deepdiff >= 5.7.0"
]
setup(
name='academic_tracker',
version=find_version(),
author='Travis Thompson',
author_email='ptth222@gmail.com',
description='Find publications on PubMed, Crossref, ORCID, and Google Scholar for given authors or references.',
keywords='PubMed publications citations Crossref ORCID Google Scholar',
license='BSD',
url='https://github.com/MoseleyBioinformaticsLab/academic_tracker',
packages=find_packages("src", exclude=['doc', 'docs', 'vignettes']),
package_dir={'': 'src'},
platforms=['any'],
long_description=readme(),
long_description_content_type="text/x-rst",
install_requires=REQUIRES,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points={"console_scripts": ["academic_tracker = academic_tracker.__main__:main"]},
)