-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
27 lines (27 loc) · 960 Bytes
/
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
from distutils.core import setup
setup(
name='gangagsoc',
packages=['gangagsoc'],
version='v2023',
license='gpl-3.0',
description='The Challenge for GSoC 2024 student to particpate in the Ganga project',
author='Ulrik Egede',
author_email='[email protected]',
url='https://github.com/ganga-devs/GangaGSoC2023',
keywords=['GSoC', 'Ganga', 'Challenge'],
install_requires=[
'pytest',
'ganga',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3.0',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)