Bug 1231764 - part 4 - add pytoml to the virtualenv; r=chmanchester
We need to parse Cargo.toml files from moz.build to determine crate package names.
This commit is contained in:
17
python/pytoml/setup.py
Normal file
17
python/pytoml/setup.py
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env python
|
||||
# coding: utf-8
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='pytoml',
|
||||
version='0.1.10',
|
||||
|
||||
description='A parser for TOML-0.4.0',
|
||||
author='Martin Vejnár',
|
||||
author_email='avakar@ratatanek.cz',
|
||||
url='https://github.com/avakar/pytoml',
|
||||
license='MIT',
|
||||
|
||||
packages=['pytoml'],
|
||||
)
|
||||
Reference in New Issue
Block a user