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