nnnotes/setup.py

26 lines
612 B
Python
Raw Normal View History

2016-03-16 14:30:32 +01:00
#!/usr/bin/env python
import os, sys
from setuptools import setup, find_packages
PACKAGE = 'nnnotes'
with open('README') as file:
README = file.read()
setup(
name = 'nnnotes',
version = 'v0',
packages = find_packages(),
package_data = {PACKAGE: ['template/Makefile', 'template/*.mmd', 'template/p/*']},
scripts = ['bin/nnnote', 'bin/iiindex', 'bin/iiinject'],
provides=[PACKAGE],
author = 'gauthiier',
author_email = 'd@gauthiier.info',
url = 'https://github.com/gauthiier/nnnotes',
long_description=README,
classifiers=[
"Topic :: Utilities",
"License :: MIT License",
]
)