-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 735 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
setup(
name='biblib',
version='0.1.0',
description='Simple, correct BibTeX parser and algorithms',
url='https://github.com/aclements/biblib',
author='Austin Clements',
author_email='aclements@csail.mit.edu',
packages=['biblib'],
keywords=['bibtex', 'tex'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Database',
'Topic :: Text Processing',
],
long_description=open('README.md').read(),
)