mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
20 lines
391 B
Python
20 lines
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,
|
||
|
)
|