-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 750 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 750 Bytes
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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
__version__ = '0.1.0'
setup(
name='ployst',
version=__version__,
description='Watch your stories unfold',
# long_description=open('README.rst').read(),
author='Carles Barrobés, Alex Couper',
author_email='carles@barrobes.com, amcouper@gmail.com',
url='https://github.com/pretenders/ployst',
packages=find_packages(),
# install_requires=['django', 'argparse'],
classifiers=[
'Intended Audience :: Developers',
('License :: OSI Approved :: '
'GNU Library or Lesser General Public License (LGPL)'),
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
],
)