-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 843 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 843 Bytes
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
#!/usr/bin/env python3
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
name = "declareflatpak"
description = "foxdeclare module for flatpaks."
setup(
name = f"{name}",
version = "1.0.0",
author = "Luna Deards",
author_email = "luna@xenialinux.com",
description= (description),
license = "GPL-3",
keywords = "update utility",
url = f"https://gitlab.com/xenia-group/{name}",
packages = [f"{name}"],
requires=["foxcommon"],
entry_points={
'console_scripts': [
f'declare-flatpak = {name}.{name}:main',
],
},
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Package"
"License :: OSI Approved :: GPL-3"
],
)