-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·40 lines (36 loc) · 1.13 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
#!/usr/bin/env python
from setuptools import setup
version = '2.2.0'
packages = [
'tenyksservice',
'tenyksservice.packages',
]
with open('README.md') as f:
long_description = f.read()
setup(name='tenyksservice',
version=version,
description="Tenyks service class for making fun things for Tenyks.",
long_description=long_description,
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='irc bot zeromq service',
author='Kyle Terry',
author_email='kyle@kyleterry.com',
url='https://github.com/kyleterry/tenyks-service',
license='LICENSE',
packages=packages,
package_dir={'tenyksservice': 'tenyksservice'},
package_data={'': ['README.md', 'LICENSE'], 'tenyksservice': ['settings.py.dist']},
include_package_data=True,
zip_safe=False,
test_suite='tests',
install_requires=[
'jinja2',
'pyzmq',
'aiozmq'
],
entry_points={
'console_scripts': [
'tenyks-service-mkconfig = tenyksservice.config:make_config'
]
},
)