-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·36 lines (30 loc) · 1.02 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
# -*- coding: utf-8 -*-
# Learn more: https://github.com/kennethreitz/setup.py
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='getdoi',
version='0.1.1',
description='Get the academic article\'s DOI from citation text.',
long_description=readme,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: MacOS X",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
],
author='Yuto Mizutani',
author_email='[email protected]',
install_requires=['beautifulsoup4', 'articleinfo'],
url='https://github.com/YutoMizutani/getdoi',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
test_suite='tests',
scripts=['scripts/getdoi']
)