gpylib/setup.py

15 lines
410 B
Python
Raw Normal View History

2021-09-15 02:05:39 +02:00
from setuptools import setup
setup(
2021-09-15 02:36:43 +02:00
name='G Python Library',
packages=['gpylib'],
2021-09-15 02:40:35 +02:00
version='0.1',
2021-09-15 02:05:39 +02:00
description='This is a library to run some tests',
url='https://git.disroot.org/gregorio/gpylib',
author='gregorio',
author_email='gregorio@disroot.org',
py_modules=['gpylib'],
2021-09-15 02:36:43 +02:00
long_description=open('README.md').read(),
license='MIT',
install_requires=['numpy'],
2021-09-15 02:05:39 +02:00
)