Initial release.
[robmyers:dogecode.git] / setup.py
1 import os
2 from setuptools import setup
3
4 # Utility function to read the README file.
5 # Used for the long_description.  It's nice, because now 1) we have a top level
6 # README file and 2) it's easier to type in the README file than to put a raw
7 # string in below ...
8 def read(fname):
9     return open(os.path.join(os.path.dirname(__file__), fname)).read()
10
11 setup(
12     name = "dogecode",
13     version = "0.0.1",
14     author = "Rob Myers",
15     author_email = "rob@robmyers.org",
16     description = ("Representing and running programs as Dogeparty tokens."),
17     license = "GPLv3+",
18     keywords = "dogeparty",
19     url = "http://robmyers.org/dogecode",
20     packages=['dogecode'],
21     scripts=['bin/dcc', 'bin/dcsend', 'bin/dcrun'],
22     long_description=read('README'),
23     classifiers=[
24         "Development Status :: 3 - Alpha",
25         "Topic :: Development",
26         "License :: OSI Approved :: GPL License",
27     ],
28 )