-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (26 loc) · 820 Bytes
/
setup.py
File metadata and controls
35 lines (26 loc) · 820 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
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
from os import path
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='vwrap',
version='0.1.0',
description='',
long_description=readme(),
url='https://github.com/ucdrascal/vwrap',
author='Kenneth Lyons',
author_email='ixjlyons@gmail.com',
license='GPLv3',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
keywords='vrep robotics simulation',
packages=find_packages()
)