-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
32 lines (28 loc) · 981 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
28
29
30
31
32
import os
from setuptools import setup, find_packages
project_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(project_dir, 'version.txt')) as f:
version = f.read().rstrip()
with open(os.path.join(project_dir, 'requirements/base.in')) as f:
requirements = [
line.split()[0]
for line in f
if not line.startswith('#')
]
setup(
name='mozapkpublisher',
version=version,
description='Scripts to get and push Firefox for Android to Google Play Store',
author='Mozilla Release Engineering',
author_email='[email protected]',
url='https://github.com/mozilla-releng/mozapkpublisher',
packages=find_packages(),
license='MPL2',
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)