-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·44 lines (37 loc) · 1.01 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
import os.path
from setuptools import setup
import pircel
install_requires = [
'chardet>=2.3',
'peewee>=2.6',
'blinker>=1.4',
]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Topic :: Communications :: Chat :: Internet Relay Chat',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only',
]
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme_file:
long_description = readme_file.read()
setup(
# Metadata
name='pircel',
version=pircel.__version__,
packages=['pircel'],
author='Kit Barnes',
author_email='[email protected]',
description='Simple IRC client library',
long_description=long_description,
url='https://bitbucket.org/KitB/pircel/',
license='BSD',
keywords='irc quassel possel',
classifiers=classifiers,
# Non-metadata (mostly)
py_modules=[],
zip_safe=False,
install_requires=install_requires,
package_data={},
)