-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (33 loc) · 969 Bytes
/
setup.py
File metadata and controls
43 lines (33 loc) · 969 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup for ERGO - Anarchy Online chat bot.
"""
from setuptools import setups
setup(
name = "ergo",
version = "0.2.0.7pa",
description = "ERGO - Anarchy Online chat bot",
author = "Tema Novikov",
author_email = "[email protected]",
download_url = "https://github.com/temoon/ergo",
scripts = (
"bin/ergo",
),
packages = (
"ergo",
),
package_dir = {
"ergo": "lib/ergo",
},
classifiers = (
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Topic :: Communications :: Chat",
"Topic :: Software Development :: Libraries :: Python Modules",
),
)