-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 987 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
from setuptools import setup
setup(
name = 'droptype-content',
version = '0.1.5',
description = '',
long_description = file('README.md').read(),
url = 'https://github.com/marquee/content',
author = 'Alec Perkins',
author_email = '[email protected]',
license = 'UNLICENSE',
packages = ['content'],
zip_safe = False,
keywords = '',
install_requires = file('requirements.txt').read().splitlines(),
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Public Domain',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)