-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
25 lines (21 loc) · 822 Bytes
/
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
#! /usr/bin/env python
import os
from setuptools import setup
descr = """Python Parser for MEDLINE and Pubmed Open-Access affiliation string"""
_root = os.path.dirname(os.path.realpath(__file__))
requirements = os.path.join(_root, "requirements.txt")
REQUIREMENTS = [x.strip() for x in open(requirements).readlines()]
if __name__ == "__main__":
setup(
name="affiliation_parser",
version="0.1",
description=descr,
long_description=open("README.md").read(),
url="https://github.com/titipata/affiliation_parser",
author="Titipat Achakulvisut",
author_email="[email protected]",
license="(c) 2015 Titipat Achakulvisut",
keywords="parser affilation",
install_requires=REQUIREMENTS,
packages=["affiliation_parser"],
)