-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
62 lines (49 loc) · 1.38 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup
import os
__version__ = '0.0.0.dev0'
requires = [
'Twisted',
'autobahn',
]
def read_file(filename):
try:
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
return f.read()
except IOError:
return ''
setup(
name='pelicide',
version=__version__,
description='An IDE for Pelican sites.',
long_description=read_file('README.rst') + '\n' + read_file('changelog.rst'),
url='https://github.com/iksteen/pelicide/',
download_url='https://github.com/iksteen/pelicide/tarball/v%s' % __version__,
author='Ingmar Steen',
author_email='[email protected]',
platforms=['Platform Independent'],
license='MIT',
packages=['pelicide'],
install_requires=requires,
zip_safe=False,
package_data = {
'pelicide': [
'ui/index.html',
'ui/build.js',
'ui/build.css',
'ui/font-awesome/fonts/*'
],
},
entry_points={
'console_scripts': [
'pelicide = pelicide.__main__:main',
],
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Internet :: WWW/HTTP',
],
)