-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
42 lines (39 loc) · 1.51 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
import json
from pathlib import Path
from setuptools import setup, find_packages
BASE_DIR = Path(__file__).resolve().parent
version_info = json.load(BASE_DIR.joinpath('impact_factor', 'version.json').open())
setup(
name=version_info['prog'],
version=version_info['version'],
author=version_info['author'],
author_email=version_info['author_email'],
description=version_info['desc'],
long_description=BASE_DIR.joinpath('README.md').read_text(),
long_description_content_type='text/markdown',
url=version_info['url'],
project_urls={
'Documentation': 'https://impact_factor.readthedocs.io',
'Tracker': 'https://github.com/suqingdong/impact_factor/issues',
},
license='MIT License',
install_requires=BASE_DIR.joinpath('requirements.txt').read_text().strip().split(),
packages=find_packages(),
include_package_data=True,
entry_points={'console_scripts': [
'IF = impact_factor.bin.cli:main',
'impact_factor = impact_factor.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 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries'
]
)