Skip to content

Commit

Permalink
added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mromanello committed Jul 22, 2015
1 parent bf0f6e1 commit 4225145
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import os
from setuptools import setup, find_packages
import citation_parser

VERSION = citation_parser.__version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


setup(name='CitationParser',
author='Matteo Romanello',
author_email='[email protected]',
url='https://github.com/mromanello/CitationParser',
version=VERSION,
packages=find_packages(),
include_package_data=True,
#package_data={'citation_parser': ['data/*.*']},
long_description=read('README.md'),
#install_requires=['partitioner','CRFPP'],
zip_safe=False,
)

0 comments on commit 4225145

Please sign in to comment.