mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 18:23:57 +01:00
21 lines
586 B
Python
21 lines
586 B
Python
import setuptools
|
|
|
|
with open('README.md', 'r', encoding='utf8') as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name='nova-api',
|
|
version='0.0.1',
|
|
author='NovaOSS Contributors',
|
|
author_email='owner@nova-oss.com',
|
|
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',
|
|
]
|
|
)
|