-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·35 lines (34 loc) · 1.16 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
from distutils.core import setup
setup(
name='bibcleaner',
version='0.0.12',
description='Super simple bibtex cleaner and normalizer',
url='https://github.com/sirrice/bibcleaner',
author='Eugene wu',
author_email='[email protected]',
packages=['bibcleaner', 'bibcleaner.templates', 'bibcleaner.static'],
include_package_data=True,
package_data={
'bibcleaner':['static/*', 'templates/*']
},
scripts=['bin/bibcleaner'],
keywords=['bibtex', 'tex', 'cleaning'],
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='see http://github.com/sirrice/bibcleaner',
install_requires = [
'click',
'sqlalchemy==1.4',
'Flask',
'biblib @ git+ssh://[email protected]/sirrice/biblib.git'
],
dependency_links=['https://github.com/sirrice/biblib/archive/master.zip']
)