-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·38 lines (37 loc) · 1.53 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
version='0.5.0', #also adapt in main.py and codemeta.json
name='codemeta-server',
license='GPL-3.0-only',
description='Web API serving codemeta software metadata using codemeta and schema.org, provides a SPARQL endpoint and also offers a human web-interface',
author='Maarten van Gompel',
author_email='[email protected]',
url='https://github.com/proycon/codemeta-server',
packages=find_packages(),
python_requires='>=3.7.0',
install_requires=open("requirements.txt", "r", encoding='utf-8').readlines(),
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
project_urls={
"Issues": "https://github.com/proycon/codemeta-server/issues",
"Source Code": "https://github.com/proycon/codemeta-server",
"Releases": "https://github.com/proycon/codemeta-server/releases"
},
entry_points={
'console_scripts': [
'codemeta-server=codemeta_server.main:main'
]
},
)