-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.21 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
with open('README.rst') as readme:
long_description = readme.read()
with open('requirements.txt') as requirements:
lines = requirements.readlines()
libraries = [lib for lib in lines if not lib.startswith('-')]
setup(
name='pyromarc',
version='0.2',
author='Arnaud Grausem',
author_email='arnaud.grausem@gmail.com',
maintainer='Arnaud Grausem',
maintainer_email='arnaud.grausem@gmail.com',
url='https://github.com/agrausem/pyromarc',
license='PSF',
description='Python implementation of MARC:MIR',
long_description=long_description,
packages=find_packages(),
download_url='http://pypi.python.org/pypi/pyromarc',
install_requires=libraries,
keywords=['MARC', 'ISO2709', 'msgpack', 'MIR', 'MARC:MIR'],
classifiers = (
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.2',
'Topic :: Text Processing',
'Topic :: Software Development :: Libraries',
)
)