-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (31 loc) · 1.19 KB
/
setup.py
File metadata and controls
executable file
·34 lines (31 loc) · 1.19 KB
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
33
34
#!/usr/bin/env python
from distutils.core import setup
with open('README.txt') as file:
long_description = file.read()
setup(
name='nirvanacli',
version='0.0.1',
description=(
'Command line interface for the Nirvana task manager '
'(nirvanahq.com)'),
long_description=long_description,
author='Nick Wilson',
author_email='nick at njwilson net',
url='http://github.com/njwilson/nirvana-cli',
packages=['nirvana', 'nirvanacli'],
scripts=['scripts/nirvana'],
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Topic :: Internet :: WWW/HTTP',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
license='Apache',
)