This repository has been archived by the owner on Mar 2, 2023. It is now read-only.
forked from prometheusresearch/cogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (52 loc) · 1.58 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
54
55
56
57
58
#
# Copyright (c) 2013, Prometheus Research, LLC
# Released under MIT license, see `LICENSE` for details.
#
from setuptools import setup, find_packages
NAME = "Cogs"
VERSION = "0.4.4"
DESCRIPTION = """Toolkit for developing command-line utilities in Python"""
LONG_DESCRIPTION = open('README', 'r').read()
AUTHOR = """Kirill Simonov (Prometheus Research, LLC)"""
AUTHOR_EMAIL = "[email protected]"
LICENSE = "MIT"
URL = "https://github.com/prometheusresearch/cogs"
DOWNLOAD_URL = "http://pypi.python.org/pypi/Cogs"
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
PACKAGES = find_packages('src')
PACKAGE_DIR = {'': 'src'}
NAMESPACE_PACKAGES = ['cogs']
INSTALL_REQUIRES = ['setuptools', 'PyYAML']
ENTRY_POINTS = {
'console_scripts': [
'cogs = cogs.run:main',
],
'cogs.extensions': [],
}
USE_2TO3 = True
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
classifiers=CLASSIFIERS,
packages=PACKAGES,
package_dir=PACKAGE_DIR,
namespace_packages=NAMESPACE_PACKAGES,
install_requires=INSTALL_REQUIRES,
entry_points=ENTRY_POINTS,
use_2to3=USE_2TO3)