-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 1017 Bytes
/
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
from setuptools import setup
setup(
name = 'marquee-composer',
version = '0.2.3-dev',
description = '',
long_description = file('README.md').read(),
url = 'https://github.com/marquee/composer',
author = 'Alec Perkins',
author_email = '[email protected]',
license = 'UNLICENSE',
packages = ['composer'],
zip_safe = False,
keywords = '',
package_data = {
'droptype-composer': ['../stylesheets/*'],
},
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: Public Domain',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)