12 lines
452 B
Python
12 lines
452 B
Python
from distutils.core import setup
|
|
|
|
setup(name = 'darkwater_escape',
|
|
version = '1.0.0',
|
|
author = 'Team Dark Water',
|
|
author_email = 'team@darkwater.io',
|
|
description = 'Library for Dark Water escape board',
|
|
license = 'MIT',
|
|
url = 'https://github.com/darkwaterfoundation/darkwater_python_escape',
|
|
packages = ['darkwater_escape']
|
|
)
|