Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Permalink
Branch: master
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time. Cannot retrieve contributors at this time
27 lines (24 sloc) 732 Bytes
import os
from setuptools import setup
import versioneer
filename = os.path.join(os.path.dirname(__file__), 'requirements.txt')
requirements = open(filename).read().splitlines()
setup(
name='scholia',
author='Finn Aarup Nielsen',
author_email='faan@dtu.dk',
cmdclass=versioneer.get_cmdclass(),
description='Scholia - Wikidata-based scholarly profiles',
license='GPL',
keywords='wikidata',
url='https://github.com/fnielsen/scholia',
packages=['scholia'],
package_data={},
install_requires=requirements,
long_description='',
classifiers=[
'Programming Language :: Python :: 2.7',
],
tests_require=['pytest', 'flake8'],
version=versioneer.get_version(),
)
You can’t perform that action at this time.