gpylib/setup.py

15 lines
400 B
Python
Raw Normal View History

2021-09-15 02:05:39 +02:00
from setuptools import setup
setup(
2021-09-15 02:42:48 +02:00
name='gpylib',
2021-09-15 02:36:43 +02:00
packages=['gpylib'],
2021-09-15 02:57:40 +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
)