mirror of
https://github.com/vale981/melpazoid
synced 2025-03-04 17:01:40 -05:00
11 lines
263 B
Python
11 lines
263 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='melpazoid',
|
|
version='0.0',
|
|
description='For testing Emacs packages.',
|
|
author='D. Chris Rayner',
|
|
author_email='dchrisrayner@gmail.com',
|
|
packages=['melpazoid'],
|
|
install_requires=['requests'],
|
|
)
|