forked from mipt-cs/pyrob
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (22 loc) · 737 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (22 loc) · 737 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
#!/usr/bin/python3
from setuptools import setup
setup(
name='pyrob',
version='0.1',
url='https://github.com/mipt-cs-on-python3/pyrob',
license='MIT',
author='Alexey Ermakov',
author_email='ermakov.as@mipt.ru',
packages=['pyrob', 'pyrob.tasks', 'pyrob.samples', 'pyrob.solutions'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: X11 Applications',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Education',
],
test_suite='pyrob.tests',
)