-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
27 lines (25 loc) · 885 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
27
# -*- coding: utf-8 -*-
u"""rswarp setup script
:copyright: Copyright (c) 2016 RadiaSoft LLC. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""
from pykern.pksetup import setup
setup(
name='rswarp',
author='RadiaSoft LLC',
author_email='pip@radiasoft.net',
description='Python tools for use with Warp',
license='http://www.apache.org/licenses/LICENSE-2.0.html',
url='https://github.com/radiasoft/rswarp',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python',
'Topic :: Utilities',
],
)