-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
24 lines (22 loc) · 823 Bytes
/
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
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="arxiv-collector",
version="0.4.1",
author="Danica J. Sutherland",
author_email="[email protected]",
description="A small script to collect LaTeX sources for upload to the arXiv",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/djsutherland/arxiv-collector",
py_modules=["arxiv_collector"],
entry_points={"console_scripts": ["arxiv-collector = arxiv_collector:main"]},
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: POSIX",
],
)