-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·53 lines (51 loc) · 1.96 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
53
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '1.0.0'
setup(name='tenyks-contrib',
version=version,
description="Contributed services for the tenyks IRC bot",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='clients tenyks ircbot services tenyks-service',
author='Kyle Terry',
author_email='kyle@kyleterry.com',
url='https://github.com/kyleterry/tenyks-contrib',
license='LICENSE',
packages=find_packages('src', exclude=['ez_setup', 'examples', 'tests']),
package_dir={'': 'src'},
package_data={'src': ['*.txt']},
include_package_data=True,
zip_safe=True,
install_requires=[
# -*- Extra requirements: -*-
'tenyksservice>=2',
'fuzzywuzzy',
'feedparser',
'python-dateutil',
'requests',
'nose',
'pytz',
'bs4'
],
entry_points={
'console_scripts': [
'tenyksafk = tenyksafk.main:main',
'tenyksfeeds = tenyksfeeds.main:main',
'tenyksleetpoints = tenyksleetpoints.main:main',
'tenyksmusic = tenyksmusic.main:main',
'tenykssearch = tenykssearch.core:main',
'tenykshahameter = tenykshahameter.main:main',
'tenyksscripts = tenyksscripts.main:main',
'tenykslinkscraper = tenykslinkscraper.main:main',
'tenykslogger = tenykslogger.main:main',
'tenykstwitter = tenykstwitter.main:main',
'tenykswunderground = tenykswunderground.main:main',
'tenykswebpagemonitor = webpage_monitor.main:main',
'tenyksweblistener = tenyksweblistener.main:main',
'tenyksddate = tenyksddate.main:main',
'tenyksgentoo = tenyksgentoo.main:main',
'tenykslol = tenykslol.main:main',
]
},
)