-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
40 lines (34 loc) · 1.04 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
"""
cite
"""
import versioneer
import os
from setuptools import setup
path = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(path, "README.md"), "r") as f:
readme = f.read()
cmdclass = versioneer.get_cmdclass()
setup(
name="cite",
version=versioneer.get_version(),
description="Command line tool to turn DOIs into citations",
long_description=readme,
long_description_content_type="text/markdown",
author="Robert Gieseke",
author_email="[email protected]",
url="https://github.com/rgieseke/cite",
license="BSD",
keywords=[],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=["cite"],
cmdclass=cmdclass,
install_requires=["requests", "lxml", "python-slugify[unidecode]"],
entry_points={"console_scripts": ["cite=cite:main"]},
)