-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
43 lines (39 loc) · 1.5 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
# -*- encoding: utf8 -*-
import os
import json
import codecs
from setuptools import setup, find_packages
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
version_info = json.load(open(os.path.join(BASE_DIR, 'pypubmed', 'version', 'version.json')))
setup(
name='pypubmed',
version=version_info['version'],
author=version_info['author'],
author_email=version_info['author_email'],
description=version_info['desc'],
long_description=codecs.open(os.path.join(BASE_DIR, 'README.md'), encoding='utf-8').read(),
long_description_content_type="text/markdown",
url='https://github.com/suqingdong/pypubmed',
project_urls={
'Documentation': 'https://pypubmed.readthedocs.io',
'Tracker': 'https://github.com/suqingdong/pypubmed/issues',
},
license='BSD License',
install_requires=codecs.open(os.path.join(BASE_DIR, 'requirements.txt'), encoding='utf-8').read().split('\n'),
packages=find_packages(),
include_package_data=True,
entry_points={'console_scripts': [
'pubmed = pypubmed.bin.cli:main',
'pypubmed = pypubmed.bin.cli:main',
]},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
]
)