2023-06-23 11:20:25 +02:00
|
|
|
import setuptools
|
|
|
|
|
2023-07-19 23:51:28 +02:00
|
|
|
with open('README.md', 'r', encoding='utf8') as fh:
|
2023-06-23 11:20:25 +02:00
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name='nova-api',
|
|
|
|
version='0.0.1',
|
2023-07-19 23:51:28 +02:00
|
|
|
author='NovaOSS Contributors',
|
|
|
|
author_email='owner@nova-oss.com',
|
2023-06-23 11:20:25 +02:00
|
|
|
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',
|
|
|
|
]
|
|
|
|
)
|