2022-06-19 16:15:47 +02:00
|
|
|
from setuptools import setup, find_packages
|
2022-06-19 16:37:53 +02:00
|
|
|
|
2022-06-19 16:15:47 +02:00
|
|
|
setup(
|
2022-06-19 16:37:53 +02:00
|
|
|
name='columbus',
|
|
|
|
version='1.0.0',
|
|
|
|
# url='https://github.com/mypackage.git',
|
|
|
|
# author='Author Name',
|
|
|
|
# author_email='author@gmail.com',
|
|
|
|
# description='Description of my package',
|
|
|
|
packages=['.'],
|
|
|
|
# install_requires=['numpy >= 1.11.1', 'matplotlib >= 1.5.1'],
|
2022-06-19 16:15:47 +02:00
|
|
|
)
|