зеркало из https://github.com/mozilla/gecko-dev.git
20 строки
391 B
Python
20 строки
391 B
Python
import os
|
|
from setuptools import setup, find_packages
|
|
import sys
|
|
|
|
version = '0.0.0'
|
|
|
|
# dependencies
|
|
with open('requirements.txt') as f:
|
|
deps = f.read().splitlines()
|
|
|
|
setup(name='taskcluster_graph',
|
|
version=version,
|
|
description='',
|
|
classifiers=[],
|
|
keywords='mozilla',
|
|
license='MPL',
|
|
packages=['taskcluster_graph'],
|
|
install_requires=deps,
|
|
)
|