forked from WDscholia/scholia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 732 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 732 Bytes
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
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(),
)