diff options
-rw-r--r-- | setup.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..31fdcfa --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +import os +from setuptools import setup + +def read(fname): + return open(os.path.join(os.path.dirname(__file__), fname)).read() + +setup( + name = "gerber-tools", + version = "0.1", + author = "Paulo Henrique Silva", + author_email = "ph.silva@gmail.com", + description = ("Utilities to handle Gerber (RS-274X) files."), + license = "Apache", + keywords = "gerber tools", + url = "http://github.com/curtacircuitos/gerber-tools", + packages=['gerber'], + long_description=read('README.md'), + classifiers=[ + "Development Status :: 3 - Alpha", + "Topic :: Utilities", + "License :: OSI Approved :: Apple Public Source License", + ], +) |