mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 20:33:58 +01:00
22 lines
553 B
Python
22 lines
553 B
Python
|
import setuptools
|
||
|
|
||
|
with open('README.md', 'r') as fh:
|
||
|
long_description = fh.read()
|
||
|
|
||
|
setuptools.setup(
|
||
|
name='nova-api',
|
||
|
version='0.0.1',
|
||
|
author='Luna OSS',
|
||
|
author_email='nsde@dmc.chat',
|
||
|
description='Nova API Server',
|
||
|
long_description=long_description,
|
||
|
long_description_content_type='text/markdown',
|
||
|
packages=setuptools.find_packages(),
|
||
|
classifiers=[
|
||
|
'Programming Language :: Python :: 3',
|
||
|
'License :: OSI Approved :: Apache Software License',
|
||
|
'Operating System :: OS Independent',
|
||
|
]
|
||
|
)
|
||
|
|