-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (28 loc) · 936 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README')
setup(
name = "pynfsn",
version = "0.1",
url = 'http://github.com/goncalopp/pynfsn',
license = 'CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
description = "Module for NearlyFreeSpeech.net RESTful API",
long_description = README,
author = 'Goncalo Pinheira',
author_email = '[email protected]',
packages = ['pynfsn'],
classifiers = \
[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
]
)