-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.py
30 lines (24 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
#!/usr/bin/env python
from setuptools import setup
from yolk.__init__ import __version__ as VERSION
setup(name="yolk",
license = "BSD License",
version=VERSION,
description="Command-line tool for querying PyPI and Python packages installed on your system.",
long_description=open("README", "r").read(),
maintainer="Rob Cakebread",
author="Rob Cakebread",
author_email="cakebread @ gmail",
url="https://github.com/cakebread/yolk",
keywords="PyPI setuptools cheeseshop distutils eggs package management",
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=["setuptools"],
packages=['yolk', 'yolk.plugins'],
package_dir={'yolk':'yolk'},
entry_points={'console_scripts': ['yolk = yolk.cli:main',]},
)