-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 930 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
28
29
30
31
32
# -*- coding: utf-8 -*-
u"""bnlcrl setup script
:copyright: Copyright (c) 2016 mrakitin. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""
try:
import pykern.pksetup
except ImportError:
import pip
pip.main(['install', 'pykern'])
import pykern.pksetup
pykern.pksetup.setup(
name='bnlcrl',
author='mrakitin',
description='CRL simulator',
license='http://www.apache.org/licenses/LICENSE-2.0.html',
url='https://github.com/mrakitin/bnlcrl',
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',
],
)