-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (44 loc) · 1.35 KB
/
setup.py
File metadata and controls
51 lines (44 loc) · 1.35 KB
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
41
42
43
44
45
46
47
48
49
50
51
from __future__ import absolute_import, print_function
import io
import os
from setuptools import find_packages, setup
def read(*names, **kwargs):
with io.open(
os.path.join(os.path.dirname(__file__), *names),
encoding=kwargs.get('encoding', 'utf8'),
) as fp:
return fp.read()
readme = open('README.md').read()
setup(
name='citeme',
version='0.1.0',
license='Apache Software License',
author='Berend Weel',
tests_require=['pytest'],
install_requires=[
'bibtexparser==0.6.2'
],
extras_require={
'pretty-bs': ['beautifulsoup'],
'pretty-bs4': ['beautifulsoup4'],
'test': ['pytest', 'pytest-flake8', 'pytest-cov'],
},
author_email='b.weel@esiencecenter.nl',
description=(
'Library to easily add citations to your code.'
),
long_description=readme,
packages=find_packages(),
include_package_data=True,
platforms='any',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)