feat(setup.py): add setup.py
icyphox icyph0x@protonmail.com
Wed, 21 Mar 2018 13:22:50 +0530
1 files changed,
19 insertions(+),
0 deletions(-)
jump to
A
setup.py
@@ -0,0 +1,19 @@
+import os +from setuptools import setup + +def read(fname): + return open(os.path.join(os.path.dirname(__file__), fname)).read() + +setup( + name = 'Vite', + version = '1.0.0', + author = 'Anirudh Oppiliappan', + author_email = 'icyph0x@protonmail.com', + description = ('A simple and minimal static site generator.'), + license = 'MIT', + url = 'https://github.com/icyphox/vite', + packages = ['vite'], + install_requires = [ + 'markdown2', + ], + zip_safe=False)