diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..85a1cd9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.egg-info +/.env diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..003402e --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup( + name="nanogenmo2019", + version="1.0", + description="Python Distribution Utilities", + author="Will Thompson", + author_email="will@willthompson.co.uk", + url="https://github.com/wjt/nanogenmo/blob/master/2019", + scripts=["2019/nanogenpo"], + install_requires=["polib"], + classifiers=[ + "License :: OSI Approved :: MIT License", + "Topic :: Artistic Software", + ], +)