-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
25 lines (23 loc) · 888 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
from setuptools import setup, find_packages
setup(
name='gym_d2d',
version='0.0.3',
description='Device-to-Device (D2D) communication OpenAI Gym environment',
keywords='open ai gym environment rl agent d2d cellular offload resource allocation',
url='https://github.com/davidcotton/gym-d2d',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=['gym>=0.9.6', 'numpy'],
extras_require={
'dev': ['flake8', 'pytest', 'pytest-cov', 'pytest-sugar']
},
clasifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)