-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (35 loc) · 1.07 KB
/
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
33
34
35
36
37
38
39
40
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
def dump_sibling_file(file_name):
with open(os.path.join(os.path.dirname(__file__), file_name), 'r') as f:
return f.read()
setup(
name = 'subdue',
packages = ['subdue',
'subdue.core',
'subdue.core.color',
'subdue.sub',
],
version = '0.1.0',
description = 'A framework to create commands with subcommands',
author='Jacobo de Vera',
author_email='[email protected]',
url='https://www.github.com/jdevera/subdue',
license='MIT',
scripts=['scripts/subdue'],
classifiers=[
'Programming Language :: Python',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Topic :: Utilities'
],
long_description=dump_sibling_file('README.rst'),
test_suite='test'
)