-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (47 loc) · 1.36 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
import os
from pip.req import parse_requirements
# hack for workings with pandocs
import codecs
try:
codecs.lookup('mbcs')
except LookupError:
utf8 = codecs.lookup('utf-8')
func = lambda name, enc=utf8: {True: enc}.get(name=='mbcs')
codecs.register(func)
# install readme
readme = os.path.join(os.path.dirname(__file__), 'README.md')
try:
import pypandoc
long_description = pypandoc.convert(readme, 'rst', format='md')
except (IOError, ImportError):
long_description = ""
# parse requirements file
# required = [str(ir.req) for ir in parse_requirements("requirements.txt")]
# setup
setup(
name='lauteur',
version='0.0.6',
description='Tools for ascribing authorship - to the chagrin of Barthes',
long_description = long_description,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords='',
author='Brian Abelson',
author_email='[email protected]',
url='http://github.com/newslynx/lauteur',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=[],
include_package_data=False,
zip_safe=False,
install_requires=[
'beautifulsoup4==4.3.2'
],
tests_require=[]
)