forked from RunestoneInteractive/RunestoneComponents
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
45 lines (43 loc) · 1.84 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
from setuptools import setup, find_packages
with open('requirements.txt', 'r') as fh:
dependencies = [l.strip() for l in fh]
setup(
name='runestone',
description='Sphinx extensions for writing interactive documents.',
version='2.2.1',
author = 'Brad Miller',
author_email = 'bonelake@mac.com',
packages= find_packages(),
install_requires=dependencies,
include_package_data = True,
zip_safe = False,
package_dir = {'runestone' : 'runestone'},
package_data = { '' : ['js/*.js', 'css/*.css', '*.txt']},
license='GPL',
url = 'https://github.com/RunestoneInteractive/RunestoneComponents',
download_url = 'https://github.com/RunestoneInteractive/RunestoneComponents/tarball/2.2.1',
keywords = ['runestone', 'sphinx', 'ebook'], # arbitrary keywords
classifiers=('Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Sphinx :: Extension',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: MacOS',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Education',
'Topic :: Text Processing :: Markup'),
# data_files=[('common',['runestone/common/*']),
# ('project/template', ['newproject_copy_me/*'])
# ],
long_description=open('README.rst').read(),
entry_points = {
'console_scripts': [
'runestone = runestone.__main__:main'
]
}
)