From 983e7fd6f2084e1dedea7985a2ee756991e56a42 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 16 Dec 2016 13:34:14 -0500 Subject: [PATCH] basic setup.py (not valid yet) --- setup.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3153274 --- /dev/null +++ b/setup.py @@ -0,0 +1,30 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import os +import sys + +from setuptools import setup + + + +if sys.argv[-1] == "publish": + os.system("python setup.py sdist bdist_wheel upload") + sys.exit() + +required = [] + +setup( + name='maya', + version='0.0.0', + description='Datetimes for Humans.', + long_description=open('README.rst').read(), + author='Kenneth Reitz', + author_email='me@kennethreitz.com', + url='https://github.com/kennethreitz/maya', + my_modules= ['maya'], + install_requires=required, + license='MIT', + classifiers=( + ), +)