-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (46 loc) · 1.2 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
from setuptools import setup, find_packages
import os
# hack for working 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 = ""
# setup
setup(
name='zuckup',
version='0.1.0',
description='simple facebook parsing',
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='brian@newslynx.org',
url='http://github.com/newslynx/zuckup',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=[],
include_package_data=False,
zip_safe=False,
install_requires=[
'facepy',
'siegfried',
'pytz'
],
tests_require=[]
)