mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
4eaf9e1e54
--HG-- extra : rebase_source : 4d2c484bc780bd20c13b9bca129bd173ac66624a extra : source : 630a93355767c7813dc7b761309f6728a79c2c80
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,
|
|
)
|