diff options
author | Paulo Henrique Silva <ph.silva@gmail.com> | 2014-10-07 09:51:08 -0300 |
---|---|---|
committer | Paulo Henrique Silva <ph.silva@gmail.com> | 2014-10-07 09:51:08 -0300 |
commit | feda1a639b9ccf1d54938b31c511074b9243c814 (patch) | |
tree | 6ba4ed9a46677aca116638c08c56d31c5cee33fe | |
parent | 14e71e2c0c078eaba016c0bca73b6268ee103c6c (diff) | |
download | gerbonara-feda1a639b9ccf1d54938b31c511074b9243c814.tar.gz gerbonara-feda1a639b9ccf1d54938b31c511074b9243c814.tar.bz2 gerbonara-feda1a639b9ccf1d54938b31c511074b9243c814.zip |
Add setuptools support
-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", + ], +) |