-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (32 loc) · 1.17 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
#!/usr/bin/env python3
# written by Daniel Oaks <[email protected]>
# Released under the ISC license
from setuptools import setup, find_packages
import girc
with open('README.rst') as file:
long_description = file.read()
setup(
name='girc',
version=girc.__version__,
description='A modern Python IRC library for Python 3.4, based on asyncio. In Development.',
long_description=long_description,
author='Daniel Oaks',
author_email='[email protected]',
url='https://github.com/DanielOaks/girc',
packages=find_packages(),
scripts=['girc_test'],
install_requires=['docopt'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Communications :: Chat',
'Topic :: Communications :: Chat :: Internet Relay Chat',
]
)