-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
49 lines (40 loc) · 1.32 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
# Load the README as lonng_description.
# Use pypandoc (if available) to convert MD to RST.
here = os.path.abspath(os.path.dirname(__file__))
try:
import pypandoc
long_description = pypandoc.convert("README.md", "rst")
except ImportError:
with open(os.path.join(here, 'README.md')) as f:
long_description = f.read()
# Dependencies for the package, once installed.
REQUIREMENTS = [
'python-dateutil',
'pycryptodome',
]
setup(
name='quasselgrep',
version='0.1',
description='quasselgrep',
long_description=long_description,
author='Chris Le Sueur',
author_email='',
url='https://github.com/fish-face/quasselgrep',
license="GPLv2",
install_requires=REQUIREMENTS,
keywords=['quassel', 'quasselgrep', 'irc', 'logs'],
packages=find_packages(),
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers for others
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
],
# Entry points; setuptools will generate scripts that invoke the listed functions.
entry_points={
'console_scripts': ['quasselgrep = quasselgrep.__main__:main']
},
)