-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (25 loc) · 984 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
25
26
27
28
from setuptools import setup, find_packages
files = ["journal_files/*"]
readme = open('README.md','r')
README_TEXT = readme.read()
readme.close()
setup(name = "bibbreviate",
version = "0.1",
description = "Abbreviate journal titles in BibTex files.",
long_description = README_TEXT,
author = "Steven Hamblin",
author_email = "[email protected]",
url = "https://github.com/Winawer/bibbreviate",
packages = find_packages(exclude="tests"),
package_data = {'src':['journal_files/*.txt']},
install_requires = ['setuptools','bibtexparser'],
entry_points = { 'console_scripts' : ['bibbrev = src.bibbrev:main'] },
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Text Processing :: Markup :: LaTeX',
],
)