This repository was archived by the owner on Mar 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (54 loc) · 1.73 KB
/
setup.py
File metadata and controls
63 lines (54 loc) · 1.73 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from __future__ import with_statement
import os.path
try:
from setuptools import setup
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
from okydoky.version import VERSION
def readme():
try:
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
return f.read()
except IOError:
pass
with open('requirements.txt') as f:
requirements = list(line.strip() for line in f)
setup(
name='Okydoky',
packages=['okydoky'],
package_data={
'okydoky': ['templates/*.*'],
'': ['README.rst', 'requirements.txt', 'distribute_setup.py']
},
version=VERSION,
description='Automated docs builder using Sphinx/GitHub/Distribute for '
'private use',
long_description=readme(),
license='MIT License',
author='Hong Minhee',
author_email='dahlia' '@' 'crosspop.in',
maintainer='Hong Minhee',
maintainer_email='dahlia' '@' 'crosspop.in',
url='https://github.com/crosspop/okydoky',
install_requires=requirements,
entry_points = {
'console_scripts': [
'okydoky = okydoky.run:main'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation'
]
)